aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/eab-gui-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/gui/widgets/eab-gui-util.c')
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index b1c8cdc898..887ffc845c 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -1037,14 +1037,14 @@ parse_address_template_section (const gchar *format,
if (ret && (pos >= format + 2) && /* If there's something before %, */
(g_ascii_strcasecmp (pos - 2, "\n") != 0) && /* And if it is not a newline */
(g_ascii_strcasecmp (pos - 2, "%w") != 0)) /* Nor whitespace */
- g_string_append (res, ", ");
+ g_string_append (res, ", ");
pos += 2;
break;
case 'w':
if (ret && (pos >= format + 2) &&
(g_ascii_strcasecmp (pos - 2, "\n") != 0) &&
(g_ascii_strcasecmp (pos - 1, " ") != 0))
- g_string_append (res, " ");
+ g_string_append (res, " ");
pos += 2;
break;
case '0': {