Evas object dbg_info: Fixed cast of pointer to int.

Also fixed additional unneeded cast.
This commit is contained in:
Tom Hacohen 2013-04-18 12:20:46 +01:00
parent 0a3004688c
commit 171eebc21b
1 changed files with 2 additions and 2 deletions

View File

@ -1920,8 +1920,8 @@ _dbg_info_get(Eo *eo_obj, void *_pd EINA_UNUSED, va_list *list)
EO_DBG_INFO_APPEND(group, "Has clipees", EINA_VALUE_TYPE_CHAR, clipees_has);
Evas_Object *clipper = NULL;
eo_do((Eo *)eo_obj, evas_obj_clip_get(&clipper));
EO_DBG_INFO_APPEND(group, "Clipper", EINA_VALUE_TYPE_INT, (int)clipper);
eo_do(eo_obj, evas_obj_clip_get(&clipper));
EO_DBG_INFO_APPEND(group, "Clipper", EINA_VALUE_TYPE_UINT64, (uintptr_t) clipper);
const Evas_Map *map = evas_object_map_get(eo_obj);
if (map)