diff options
author | Tom Hacohen <tom@stosb.com> | 2013-09-27 10:59:41 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2013-09-27 14:01:47 +0100 |
commit | 5e90d5101333d385e9914e116b60bd64adec06ac (patch) | |
tree | f17d404ffa70b05755a85e5dec7d79e905ea1f43 /src/lib/eo/eo_ptr_indirection.x | |
parent | 8dbbc167319dfe95ab5c3cb4dd0d9e14d15bf89e (diff) | |
download | efl-5e90d5101333d385e9914e116b60bd64adec06ac.tar.gz |
Eo: Merge common part of class and object.
First step toward getting rid of "handle".
Diffstat (limited to 'src/lib/eo/eo_ptr_indirection.x')
-rw-r--r-- | src/lib/eo/eo_ptr_indirection.x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/eo_ptr_indirection.x b/src/lib/eo/eo_ptr_indirection.x index 8f8500f39b..201f908c66 100644 --- a/src/lib/eo/eo_ptr_indirection.x +++ b/src/lib/eo/eo_ptr_indirection.x @@ -456,7 +456,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(EO_FROM_HANDLE(obj_id), EO_FREED_EINA_MAGIC); + EINA_MAGIC_SET((Eo_Header *) obj_id, EO_FREED_EINA_MAGIC); #endif } |