From a019579fc0b43d97340653e5d16cc13bfe3f758d Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 5 Jan 2015 12:17:03 -0500 Subject: [PATCH] elementary: Fix return values to use Eina_Bool Summary: This function is expecting Eina_Bool as the return value, not ints so let's use EINA_FALSE here. NB: this just fixes a copy/paste issue @fix Signed-off-by: Chris Michael --- src/lib/elm_cnp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_cnp.c b/src/lib/elm_cnp.c index 4ef30e8..1957418 100644 --- a/src/lib/elm_cnp.c +++ b/src/lib/elm_cnp.c @@ -2989,9 +2989,9 @@ _wl_elm_drag_start(Evas_Object *obj, Elm_Sel_Format format EINA_UNUSED, const ch Evas *evas; if (!(evas = evas_object_evas_get(obj))) - return 0; + return EINA_FALSE; if (!(ee = ecore_evas_ecore_evas_get(evas))) - return 0; + return EINA_FALSE; parent = ecore_evas_wayland_window_get(ee); } -- 2.7.4