summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2013-11-26 13:08:55 +0000
committerTom Hacohen <tom@stosb.com>2013-11-26 13:08:55 +0000
commit05d2701474def6cf20c00472889553d78b4de19a (patch)
treefe127e4b96e9aeea1fe0ad174219752f66fc5271
parent1b51bc256bc2a4aaeb3fe209709e435b6195af94 (diff)
downloadefl-05d2701474def6cf20c00472889553d78b4de19a.tar.gz
Eo: Fixed eo_manual_free to always return a value.
I wonder how come this wasn't triggered in 64bit and only in 32.
-rw-r--r--src/lib/eo/eo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index b6773935c4..fc644642d7 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -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)
{