Fix a g_strdup_printf()

Signed-off-by: Federico Mena Quintero <federico@novell.com>
This commit is contained in:
Federico Mena Quintero
2009-09-30 17:55:12 -05:00
parent 5a80b1fb2d
commit 87bb81887a

View File

@@ -6329,7 +6329,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