diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
commit | f8794ccccadc91bd37a4fe19577fc789cf0d0107 (patch) | |
tree | 47fea3e572b4614ca5aada3be8a53ea671e34980 /gtk/gtkfilesystemunix.c | |
parent | e5afc7e33198a7b694e4177de7802e80d0be1aec (diff) | |
download | gtk+-f8794ccccadc91bd37a4fe19577fc789cf0d0107.tar.gz |
Improve consistency of signal and property names
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; } |