edje: don't return a boolean when a pointer is expected

Fix a warning thrown by Apple-llvm.
This commit is contained in:
Jean Guyomarc'h 2016-06-04 16:51:38 +02:00
parent 1f6a633ea6
commit e33c5a85d4
1 changed files with 1 additions and 1 deletions

View File

@ -5280,7 +5280,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;