aboutsummaryrefslogtreecommitdiff
path: root/src/Config.h
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2019-05-05 04:16:22 +0200
committerGitHub <noreply@github.com>2019-05-05 04:16:22 +0200
commitfdd20c48ed62b9410292097f0ee2ad53f5c3109c (patch)
tree26f839568ed089ad5eb34a139f9069c08b16195a /src/Config.h
parent85b3bdebd1258a13b3d28eeff5a7eef2d22fb5d9 (diff)
parentf91eb18152e7bb84a402255d283a546f4dc95ce8 (diff)
Merge pull request #400 from ccawley2011/write-strings
Fix all -Wwrite-strings warnings
Diffstat (limited to 'src/Config.h')
-rw-r--r--src/Config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Config.h b/src/Config.h
index 25d1ee2..88eb202 100644
--- a/src/Config.h
+++ b/src/Config.h
@@ -30,7 +30,7 @@ typedef struct
int Type;
void* Value;
int DefaultInt;
- char* DefaultStr;
+ const char* DefaultStr;
int StrLength; // should be set to actual array length minus one
} ConfigEntry;