summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYomi <abyomi0@gmail.com>2015-08-07 17:06:23 +0900
committerChunEon Park <hermet@hermet.pe.kr>2015-08-07 17:06:23 +0900
commit626003ce0cc305d9e09e8377c99670e141f5d8cb (patch)
tree54ae9562f99a8bde0b7ded0c5d963184f0c9cc64 /src
parent36dd11e8d6fb307df5f96444e64b7cf67e425169 (diff)
downloadefl-626003ce0cc305d9e09e8377c99670e141f5d8cb.tar.gz
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
Diffstat (limited to 'src')
-rw-r--r--src/examples/eio/eio_file_copy.c2
-rw-r--r--src/tests/eio/eio_test_file.c2
-rw-r--r--src/tests/eio/eio_test_xattr.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/examples/eio/eio_file_copy.c b/src/examples/eio/eio_file_copy.c
index 72da1b7e4b..9a979d2673 100644
--- a/src/examples/eio/eio_file_copy.c
+++ b/src/examples/eio/eio_file_copy.c
@@ -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();
}
diff --git a/src/tests/eio/eio_test_file.c b/src/tests/eio/eio_test_file.c
index 912c975c08..f0e231cd99 100644
--- a/src/tests/eio/eio_test_file.c
+++ b/src/tests/eio/eio_test_file.c
@@ -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();
}
diff --git a/src/tests/eio/eio_test_xattr.c b/src/tests/eio/eio_test_xattr.c
index dfc5894045..6600026b5b 100644
--- a/src/tests/eio/eio_test_xattr.c
+++ b/src/tests/eio/eio_test_xattr.c
@@ -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();