diff options
Diffstat (limited to 'gtk/gtkfilesystemunix.c')
-rw-r--r-- | gtk/gtkfilesystemunix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfilesystemunix.c b/gtk/gtkfilesystemunix.c index 9b9218426d..73be26a9ef 100644 --- a/gtk/gtkfilesystemunix.c +++ b/gtk/gtkfilesystemunix.c @@ -2074,8 +2074,8 @@ file_info_for_root_with_error (const char *root_name, g_set_error (error, GTK_FILE_SYSTEM_ERROR, GTK_FILE_SYSTEM_ERROR_FAILED, - _("Error getting information for '/': %s"), - g_strerror (saved_errno)); + _("Error getting information for '%s': %s"), + "/", g_strerror (saved_errno)); return NULL; } |