From 3098c437457b4fb1016b89fb527b3d0eee788bad Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 25 Jun 2012 06:46:57 +0000 Subject: [PATCH] int -> ptr more correctly SVN revision: 72778 --- legacy/evas/src/lib/canvas/evas_object_textgrid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_textgrid.c b/legacy/evas/src/lib/canvas/evas_object_textgrid.c index 187e8ae514..da07cc1baf 100644 --- a/legacy/evas/src/lib/canvas/evas_object_textgrid.c +++ b/legacy/evas/src/lib/canvas/evas_object_textgrid.c @@ -319,7 +319,7 @@ evas_object_textgrid_textprop_unref(Evas_Object_Textgrid *o, unsigned int props_ if (props->info) { if (props->info->refcount == 1) - eina_array_push(&o->glyphs_cleanup, (void*) props_index); + eina_array_push(&o->glyphs_cleanup, (intptr_t*)(long) props_index); else evas_common_text_props_content_unref(props); }