From c37a0eab23826c608067f26af46765e17bafe017 Mon Sep 17 00:00:00 2001 From: Duna Oh Date: Wed, 23 Mar 2016 14:31:39 +0900 Subject: [PATCH] fix build warning on cb_restack Signed-off-by: Duna Oh Change-Id: If132094d8f4b1918e77153d215f688d440f0f051 --- src/bin/e_comp_wl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index e2bc451..0a0ff90 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -531,10 +531,10 @@ _e_comp_wl_evas_cb_restack(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EIN struct wl_resource *res; struct wl_client *wc; - if (!(ec = e_comp_wl->ptr.ec)) return ECORE_CALLBACK_PASS_ON; - if (e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_PASS_ON; - if (!ec->comp_data->surface) return ECORE_CALLBACK_PASS_ON; - if (ec->ignored) return ECORE_CALLBACK_PASS_ON; + if (!(ec = e_comp_wl->ptr.ec)) return; + if (e_object_is_del(E_OBJECT(ec))) return; + if (!ec->comp_data->surface) return; + if (ec->ignored) return; wc = wl_resource_get_client(ec->comp_data->surface); -- 2.7.4