From 846e015cf77877892bba42b4f32637b3801cc9ba Mon Sep 17 00:00:00 2001 From: Martin Nilsson <nilsson@opera.com> Date: Thu, 21 Aug 2014 20:00:22 +0200 Subject: [PATCH] Added const to master_file_location. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index e3be28e643..41a08e8563 100644 --- a/src/main.c +++ b/src/main.c @@ -92,7 +92,7 @@ #endif static const char _master_location[MAXPATHLEN+CONSTANT_STRLEN(MASTER_COOKIE)] = MASTER_COOKIE; -static char *master_file_location = _master_location + CONSTANT_STRLEN(MASTER_COOKIE); +static const char *master_file_location = _master_location + CONSTANT_STRLEN(MASTER_COOKIE); static void set_master(const char *file) { -- GitLab