cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=166d5e476794a5c17f4c5e38289a0c72318a4d4a

commit 166d5e476794a5c17f4c5e38289a0c72318a4d4a
Author: Cedric BAIL <[email protected]>
Date:   Thu Dec 20 14:07:19 2018 -0800

    ecore: fix build by having proper parameters order.
---
 src/lib/ecore/efl_exe.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore/efl_exe.c b/src/lib/ecore/efl_exe.c
index 254dd4c17a..e870fcaf1f 100644
--- a/src/lib/ecore/efl_exe.c
+++ b/src/lib/ecore/efl_exe.c
@@ -485,7 +485,7 @@ _efl_exe_efl_task_run(Eo *obj EINA_UNUSED, Efl_Exe_Data *pd)
                                               EFL_LOOP_HANDLER_FLAGS_READ));
         _ecore_signal_pid_unlock();
         pd->run = EINA_TRUE;
-        pd->promise = efl_loop_promise_new(obj, _run_cancel_cb, obj);
+        pd->promise = efl_loop_promise_new(obj, obj, _run_cancel_cb, NULL);
         return efl_future_then(obj, eina_future_new(pd->promise));
      }
    // this code is in the child here, and is temporary setup until we

-- 


Reply via email to