summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@gmail.com>2019-09-12 14:45:58 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-09-12 14:45:58 -0400
commit1f24762fc46538dd81a84ebfe43e3bda91174829 (patch)
tree5c01a2f95998c3a72e10fc3659ee63da2ce7487e
parent2801b45d8f7922650c85442a75d1f1a5b3ad62d3 (diff)
downloadefl-1f24762fc46538dd81a84ebfe43e3bda91174829.tar.gz
eio: fix warning
Test Plan: compillation Reviewers: raster, cedric, zmike Reviewed By: cedric Subscribers: #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9925
-rw-r--r--src/lib/eio/eio_single.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eio/eio_single.c b/src/lib/eio/eio_single.c
index 3fd11a59cb..c0c21a5979 100644
--- a/src/lib/eio/eio_single.c
+++ b/src/lib/eio/eio_single.c
@@ -605,7 +605,7 @@ eio_file_chown(const char *path,
return &c->common;
#else
EINA_SAFETY_ON_NULL_RETURN_VAL(error_cb, NULL);
- error_cb(data, NULL, EINVAL);
+ error_cb((char *)data, NULL, EINVAL);
return NULL;
(void)path;
(void)user;