eo_ptr_indirection.x: fix _eo_id_release when !HAVE_EO_ID

This commit is contained in:
Jérémy Zurcher 2013-09-18 17:12:15 +02:00
parent b9e3e6be57
commit 027548011c
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ _eo_id_release(const Eo_Id obj_id)
ERR("obj_id %p is not pointing to a valid object. Maybe it has already been freed.", (void *)obj_id);
#else
EINA_MAGIC_SET(obj_id, EO_FREED_EINA_MAGIC);
EINA_MAGIC_SET((_Eo *) obj_id, EO_FREED_EINA_MAGIC);
#endif
}