aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Van Rooy <wouter.van.rooy@vasco.com>2012-10-01 15:23:18 +0200
committerWouter Van Rooy <wouter.van.rooy@vasco.com>2012-10-01 15:23:18 +0200
commit4594bb8f5b4c7a091b952ca28c628966b153d590 (patch)
treed539208e720850aa2af6538db3e51bbb363dc708
parentbf6a10014039db04d2dbce28dd56f63e2559181d (diff)
Fix const assignment warning.
warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] This warning is fixed. This is actually only allowed for legacy reasons and should not be ignored.
-rw-r--r--svte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/svte.c b/svte.c
index 8c18d86..e92a69e 100644
--- a/svte.c
+++ b/svte.c
@@ -84,7 +84,7 @@ static GQuark term_data_id = 0;
static Settings *config;
static gchar *config_file = NULL;
-static gchar *start_program = NULL;
+const static gchar *start_program = NULL;
static gboolean show_version = FALSE;
static GOptionEntry options[] = {