aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32/file_dlg_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/win32/file_dlg_win32.c')
-rw-r--r--ui/win32/file_dlg_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/win32/file_dlg_win32.c b/ui/win32/file_dlg_win32.c
index aae4ee7cb6..533ff84915 100644
--- a/ui/win32/file_dlg_win32.c
+++ b/ui/win32/file_dlg_win32.c
@@ -1493,7 +1493,7 @@ build_file_type_list(gboolean save, int *item_to_select) {
extension = g_slist_next(extension)) {
if (sep != '\0')
g_string_append_c(str, sep);
- g_string_append_printf(str, "%s", sep, (char *)extension->data);
+ g_string_append_printf(str, "%c%s", sep, (char *)extension->data);
sep = ';';
}
str16 = utf_8to16(str->str);