jaehyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=abad5cb5c877a04bebbe6ed6e2fb06c7f45ce0b1
commit abad5cb5c877a04bebbe6ed6e2fb06c7f45ce0b1 Author: Jaehyun Cho <jae_hyun....@samsung.com> Date: Wed Jan 2 15:04:50 2019 +0900 ecore: fix build by having proper parameters order. --- src/examples/ecore/ecore_promise2_example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/ecore/ecore_promise2_example.c b/src/examples/ecore/ecore_promise2_example.c index f99ef7815c..d10acf0450 100644 --- a/src/examples/ecore/ecore_promise2_example.c +++ b/src/examples/ecore/ecore_promise2_example.c @@ -56,7 +56,7 @@ _promise_ctx_new(Efl_Loop *loop, Eina_Value *v) Ctx *ctx; ctx = calloc(1, sizeof(Ctx)); EINA_SAFETY_ON_NULL_GOTO(ctx, err_ctx); - ctx->p = efl_loop_promise_new(loop, _promise_cancel, ctx); + ctx->p = efl_loop_promise_new(loop, ctx, _promise_cancel, NULL); EINA_SAFETY_ON_NULL_GOTO(ctx->p, err_timer); ctx->value = v; return ctx; --