Fix grammar in error messages.

Summary:
Changes:

     src/examples/eio/eio_file_copy.c
     src/tests/eio/eio_test_file.c
     src/tests/eio/eio_test_xattr.c

Reviewers: cedric, thiepha, Hermet

Reviewed By: thiepha, Hermet

Subscribers: thiepha, cedric

Differential Revision: https://phab.enlightenment.org/D2912
This commit is contained in:
Yomi 2015-08-07 17:06:23 +09:00 committed by ChunEon Park
parent 36dd11e8d6
commit 626003ce0c
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ _done_cb(void *data EINA_UNUSED, Eio_File *handle EINA_UNUSED)
static void
_error_cb(void *data EINA_UNUSED, Eio_File *handle EINA_UNUSED, int error)
{
fprintf(stderr, "Something wrong has happend:%s\n", strerror(error));
fprintf(stderr, "Something has gone wrong:%s\n", strerror(error));
ecore_main_loop_quit();
}

View File

@ -110,7 +110,7 @@ _done_cb(void *data, Eio_File *handler EINA_UNUSED)
static void
_error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error)
{
fprintf(stderr, "Something wrong has happend:%s\n", strerror(error));
fprintf(stderr, "Something has gone wrong:%s\n", strerror(error));
ecore_main_loop_quit();
}

View File

@ -122,7 +122,7 @@ static void
_error_cb(void *data EINA_UNUSED, Eio_File *handler EINA_UNUSED, int error)
{
fprintf(stderr, "Something wrong has happend:%s\n", strerror(error));
fprintf(stderr, "Something has gone wrong:%s\n", strerror(error));
abort();
ecore_main_loop_quit();