From 7beae0fd7080a5b36f955b2980d217ec85e293a0 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 25 Sep 2017 14:27:05 +0300 Subject: [PATCH] client: Remove const char * const This type of construct usually makes no difference in practice as it is very rare that a static table would be changed. --- client/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/main.c b/client/main.c index 91b728a12..6c624646e 100644 --- a/client/main.c +++ b/client/main.c @@ -73,13 +73,13 @@ static GList *ctrl_list; static guint input = 0; -static const char * const mode_arguments[] = { +static const char *mode_arguments[] = { "on", "off", NULL }; -static const char * const agent_arguments[] = { +static const char *agent_arguments[] = { "on", "off", "DisplayOnly", @@ -90,7 +90,7 @@ static const char * const agent_arguments[] = { NULL }; -static const char * const ad_arguments[] = { +static const char *ad_arguments[] = { "on", "off", "peripheral", -- 2.47.3