summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2016-06-13 20:27:37 +0200
committerLemonBoy <thatlemon@gmail.com>2016-06-13 20:27:37 +0200
commit5c8423a08cd9ffbe3363f3b0e5722e4a32157914 (patch)
tree617cf6da67d7ed18d35193bfd2787bef9197660c /src
parent439e21f12746519d36e205a3ac053c882d67c024 (diff)
downloadirssi-5c8423a08cd9ffbe3363f3b0e5722e4a32157914.zip
Add a space after the comma when listing the options.
Diffstat (limited to 'src')
-rw-r--r--src/fe-common/core/fe-settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-settings.c b/src/fe-common/core/fe-settings.c
index 6f69d930..abbd45a8 100644
--- a/src/fe-common/core/fe-settings.c
+++ b/src/fe-common/core/fe-settings.c
@@ -109,7 +109,7 @@ static void set_choice(const char *key, const char *value)
if (settings_set_choice(key, stripped_value) == FALSE) {
SETTINGS_REC *rec = settings_get_record(key);
- char *msg = g_strjoinv(",", rec->choices);
+ char *msg = g_strjoinv(", ", rec->choices);
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR, TXT_INVALID_CHOICE, msg);
g_free(msg);