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
committed by Benjamin Otte
parent c39e8af7f4
commit 1d283145bf

View File

@ -6427,7 +6427,7 @@ show_error_on_reading_current_folder (GtkFileChooserDefault *impl, GError *error
NULL); NULL);
if (info) 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); g_object_unref (info);
} }
else else