Eo: Fixed eo_manual_free to always return a value.

I wonder how come this wasn't triggered in 64bit and only in 32.
This commit is contained in:
Tom Hacohen 2013-11-26 13:08:55 +00:00
parent 1b51bc256b
commit 05d2701474
1 changed files with 1 additions and 1 deletions

View File

@ -1534,7 +1534,7 @@ eo_manual_free_set(Eo *obj_id, Eina_Bool manual_free)
EAPI Eina_Bool
eo_manual_free(Eo *obj_id)
{
EO_OBJ_POINTER_RETURN(obj_id, obj);
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, EINA_FALSE);
if (EINA_FALSE == obj->manual_free)
{