From a44399fc5d708745817f0545aad1dc1e69e9f184 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Thu, 24 Jan 2019 13:27:50 +0900 Subject: [PATCH] examples: remove data parameter of efl_loop_promise_new Build error is fixed by removing data parameter of efl_loop_promise_new. This patch is for 563f91eaf98fff474a4858f2d81c6374f0d777b9 --- 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 7ddb426b1a..bdf153d7ba 100644 --- a/src/examples/ecore/ecore_promise2_example.c +++ b/src/examples/ecore/ecore_promise2_example.c @@ -58,7 +58,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, NULL); + ctx->p = efl_loop_promise_new(loop); EINA_SAFETY_ON_NULL_GOTO(ctx->p, err_timer); ctx->value = v; return ctx;