From 8bda6e9f072d071f2d2a2bb298cce60d531c074d Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 20 Mar 2019 14:58:26 +0100 Subject: assignment discards 'const' qualifier from pointer target type --- charpick/charpick.c | 2 +- cpufreq/src/cpufreq-applet.c | 2 +- multiload/main.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charpick/charpick.c b/charpick/charpick.c index 6e4842cd..fbcf4bd7 100644 --- a/charpick/charpick.c +++ b/charpick/charpick.c @@ -566,7 +566,7 @@ about (GtkAction *action, NULL }; - static const gchar * const documenters[] = { + static const gchar* documenters[] = { "Dan Mueth ", N_("Sun GNOME Documentation Team "), N_("MATE Documentation Team"), diff --git a/cpufreq/src/cpufreq-applet.c b/cpufreq/src/cpufreq-applet.c index 1d110556..7dc93efe 100644 --- a/cpufreq/src/cpufreq-applet.c +++ b/cpufreq/src/cpufreq-applet.c @@ -463,7 +463,7 @@ cpufreq_applet_about_cb (GtkAction *action, "Carlos Garcia Campos ", NULL }; - static const gchar *const documenters[] = { + static const gchar* documenters[] = { "Carlos Garcia Campos ", "Davyd Madeley ", N_("MATE Documentation Team"), diff --git a/multiload/main.c b/multiload/main.c index 3ad37fdd..7496d888 100644 --- a/multiload/main.c +++ b/multiload/main.c @@ -42,7 +42,7 @@ about_cb (GtkAction *action, NULL }; - const gchar * const documenters[] = + const gchar* documenters[] = { "Chee Bin HOH ", N_("Sun GNOME Documentation Team "), -- cgit v1.2.1