furrymyad pushed a commit to branch efl-1.16.

http://git.enlightenment.org/core/efl.git/commit/?id=33e4f24765f6e2ea4e6170f77a5a11de446553bf

commit 33e4f24765f6e2ea4e6170f77a5a11de446553bf
Author: Jean Guyomarc'h <[email protected]>
Date:   Sat Jun 4 16:51:38 2016 +0200

    edje: don't return a boolean when a pointer is expected
    
    Fix a warning thrown by Apple-llvm.
---
 src/lib/edje/edje_edit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/edje/edje_edit.c b/src/lib/edje/edje_edit.c
index b0d91b4..03bd8fd 100644
--- a/src/lib/edje/edje_edit.c
+++ b/src/lib/edje/edje_edit.c
@@ -5266,7 +5266,7 @@ edje_edit_part_item_index_name_get(Evas_Object *obj, 
const char *part, unsigned
        (rp->part->type != EDJE_PART_TYPE_TABLE))
      return NULL;
    if (rp->part->items_count < index)
-     return EINA_FALSE;
+     return NULL;
 
    ep = rp->part;
 

-- 


Reply via email to