aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/ConfigParser.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/config/ConfigParser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config/ConfigParser.cxx b/src/config/ConfigParser.cxx
index 3535c9a13..da7d58e49 100644
--- a/src/config/ConfigParser.cxx
+++ b/src/config/ConfigParser.cxx
@@ -23,8 +23,8 @@
bool
get_bool(const char *value, bool *value_r)
{
- static const char *t[] = { "yes", "true", "1", nullptr };
- static const char *f[] = { "no", "false", "0", nullptr };
+ static const char *const t[] = { "yes", "true", "1", nullptr };
+ static const char *const f[] = { "no", "false", "0", nullptr };
if (string_array_contains(t, value)) {
*value_r = true;