From a3b51220ed3b133ebaf5680104c955ebb9195175 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 11 Nov 2023 13:31:05 +1100 Subject: [PATCH] [common] option: remove const qualifier from shortopt --- common/include/common/option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/common/option.h b/common/include/common/option.h index 1ebe12be..cb94a007 100644 --- a/common/include/common/option.h +++ b/common/include/common/option.h @@ -49,7 +49,7 @@ struct Option char * module; char * name; char * description; - const char shortopt; + char shortopt; bool preset; void * opaque;