1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-15 20:25:12 +01:00

Fix typo in error message ().

2008-05-25  Ross Burton  <ross@burtonini.com>

	* glocalfile.c:
	Fix typo in error message ().

svn path=/trunk/; revision=6928
This commit is contained in:
Ross Burton 2008-05-25 18:31:42 +00:00 committed by Ross Burton
parent 75a558f900
commit 8b6fdb362f
2 changed files with 6 additions and 1 deletions

@ -1,3 +1,8 @@
2008-05-25 Ross Burton <ross@burtonini.com>
* glocalfile.c:
Fix typo in error message (#534764).
2008-05-25 Ross Burton <ross@burtonini.com> 2008-05-25 Ross Burton <ross@burtonini.com>
* Makefile.am: * Makefile.am:

@ -1988,7 +1988,7 @@ g_local_file_make_directory (GFile *file,
else else
g_set_error (error, G_IO_ERROR, g_set_error (error, G_IO_ERROR,
g_io_error_from_errno (errsv), g_io_error_from_errno (errsv),
_("Error removing file: %s"), _("Error creating directory: %s"),
g_strerror (errsv)); g_strerror (errsv));
return FALSE; return FALSE;
} }