zmike pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1f24762fc46538dd81a84ebfe43e3bda91174829

commit 1f24762fc46538dd81a84ebfe43e3bda91174829
Author: Vincent Torri <vincent.to...@gmail.com>
Date:   Thu Sep 12 14:45:58 2019 -0400

    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
---
 src/lib/eio/eio_single.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;

-- 


Reply via email to