Fix print call.

svn path=/trunk/; revision=40638
This commit is contained in:
Guy Harris 2012-01-21 23:09:40 +00:00
parent 34d26e6ee0
commit 73b8659ae4
1 changed files with 1 additions and 1 deletions

View File

@ -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);