eina_list: Return false on error.

Maybe Eina_Bool needs a 'file not found' error or something.

SVN revision: 50799
This commit is contained in:
Brett Nash 2010-08-04 02:03:45 +00:00
parent 960624f80d
commit de54ffcf23
1 changed files with 1 additions and 1 deletions

View File

@ -1164,7 +1164,7 @@ elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting)
EAPI Eina_Bool
elm_list_item_separator_get(const Elm_List_Item *it)
{
ELM_LIST_ITEM_CHECK_DELETED_RETURN(it);
ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE);
return it->is_separator;
}