From 73b8659ae4cf797e6b7d8139e0505c674367cc27 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 21 Jan 2012 23:09:40 +0000 Subject: Fix print call. svn path=/trunk/; revision=40638 --- ui/win32/file_dlg_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/win32') 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); -- cgit v1.2.3