]> Pileus Git - ~andy/gtk/commitdiff
Fix a g_strdup_printf()
authorFederico Mena Quintero <federico@novell.com>
Wed, 30 Sep 2009 22:55:12 +0000 (17:55 -0500)
committerBenjamin Otte <otte@gnome.org>
Thu, 15 Oct 2009 20:06:19 +0000 (22:06 +0200)
Signed-off-by: Federico Mena Quintero <federico@novell.com>
gtk/gtkfilechooserdefault.c

index 67d0ee5ec3b1b09534fdb9a31cc70b4fb011d3b3..38654ab1fed7dfb049e5d72367bd26b42d6a8252 100644 (file)
@@ -6427,7 +6427,7 @@ show_error_on_reading_current_folder (GtkFileChooserDefault *impl, GError *error
                            NULL);
   if (info)
     {
-      msg = g_strdup (_("Could not read the contents of %s"), g_file_info_get_display_name (info));
+      msg = g_strdup_printf (_("Could not read the contents of %s"), g_file_info_get_display_name (info));
       g_object_unref (info);
     }
   else