From 89ce04a6c33dc082720d9bde0f7a6fd856ca63d7 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Tue, 30 Dec 2014 00:02:27 +0100 Subject: [PATCH] this obviously cannot be const, then. fix the build. --- src/util/language_struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/language_struct.h b/src/util/language_struct.h index 14f331710..84932532e 100644 --- a/src/util/language_struct.h +++ b/src/util/language_struct.h @@ -14,7 +14,7 @@ typedef struct locale_str { } locale_str; typedef struct locale { - const char *name; + char *name; unsigned int index; struct locale *next; unsigned int hashkey;