From: Ross Burton Date: Sun, 25 May 2008 18:31:42 +0000 (+0000) Subject: Fix typo in error message (#534764). X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=8b6fdb362f6b16016e556876b174e7f3d74a10d3;p=dana%2Fcg-glib.git Fix typo in error message (#534764). 2008-05-25 Ross Burton * glocalfile.c: Fix typo in error message (#534764). svn path=/trunk/; revision=6928 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index 19494375..37d8781c 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-05-25 Ross Burton + + * glocalfile.c: + Fix typo in error message (#534764). + 2008-05-25 Ross Burton * Makefile.am: diff --git a/gio/glocalfile.c b/gio/glocalfile.c index ed40ea63..cdb2fba2 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -1988,7 +1988,7 @@ g_local_file_make_directory (GFile *file, else g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv), - _("Error removing file: %s"), + _("Error creating directory: %s"), g_strerror (errsv)); return FALSE; }