From 21bb5db3e258f8964902e2d251dd813a2699836e Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 7 Dec 2012 02:32:11 +0000 Subject: [PATCH] efl: fix build with debug profile. SVN revision: 80406 --- src/lib/ecore/ecore_timer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/ecore/ecore_timer.c b/src/lib/ecore/ecore_timer.c index 768198876b..81a1ba2da0 100644 --- a/src/lib/ecore/ecore_timer.c +++ b/src/lib/ecore/ecore_timer.c @@ -532,12 +532,12 @@ ecore_timer_dump(void) #ifdef WANT_ECORE_TIMER_DUMP Eina_Strbuf *result; char *out; - Ecore_Timer *tm; + Ecore_Timer_Private_Data *tm; Eina_List *tmp = NULL; int living_timer = 0; int unknow_timer = 0; - EINA_MAIN_LOOP_CHECK_RETURN(NULL); + EINA_MAIN_LOOP_CHECK_RETURN_VAL(NULL); _ecore_lock(); result = eina_strbuf_new(); @@ -960,8 +960,8 @@ static int _ecore_timer_cmp(const void *d1, const void *d2) { - const Ecore_Timer *t1 = d1; - const Ecore_Timer *t2 = d2; + const Ecore_Timer_Private_Data *t1 = d1; + const Ecore_Timer_Private_Data *t2 = d2; return (int)((t1->in - t2->in) * 100); }