Fix typo in error message (#534764).

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

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

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

View File

@ -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>
* Makefile.am:

View File

@ -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;
}