summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2016-06-13 14:07:04 +0200
committerLemonBoy <thatlemon@gmail.com>2016-06-13 14:07:04 +0200
commit439e21f12746519d36e205a3ac053c882d67c024 (patch)
tree4377fbb71692e9b47a0061719291f6b215216a85 /src/core
parent9a30ab53df226acb4586a2f214f3994a7b8b32ea (diff)
downloadirssi-439e21f12746519d36e205a3ac053c882d67c024.zip
Use ; as separator instead of ,
Diffstat (limited to 'src/core')
-rw-r--r--src/core/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/settings.c b/src/core/settings.c
index 0716103a..e6b5d16f 100644
--- a/src/core/settings.c
+++ b/src/core/settings.c
@@ -210,7 +210,7 @@ static void settings_add(const char *module, const char *section,
return;
}
- choices_vec = g_strsplit(choices, ",", -1);
+ choices_vec = g_strsplit(choices, ";", -1);
/* validate the default value */
if (default_value->v_int < 0 || default_value->v_int >= g_strv_length(choices_vec)) {