tasn pushed a commit to branch master.

commit 171eebc21bb50cd140a269cd73305e8202126fa0
Author: Tom Hacohen <[email protected]>
Date:   Thu Apr 18 12:20:46 2013 +0100

    Evas object dbg_info: Fixed cast of pointer to int.
    
    Also fixed additional unneeded cast.
---
 src/lib/evas/canvas/evas_object_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/canvas/evas_object_main.c 
b/src/lib/evas/canvas/evas_object_main.c
index 9ff56e8..bc18b7f 100644
--- a/src/lib/evas/canvas/evas_object_main.c
+++ b/src/lib/evas/canvas/evas_object_main.c
@@ -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)

-- 

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter

Reply via email to