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
This commit is contained in:
Vincent Torri 2019-09-12 14:45:58 -04:00 committed by Mike Blumenkrantz
parent 2801b45d8f
commit 1f24762fc4
1 changed files with 1 additions and 1 deletions

View File

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