diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2012-12-07 02:32:11 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2012-12-07 02:32:11 +0000 |
commit | 21bb5db3e258f8964902e2d251dd813a2699836e (patch) | |
tree | 0b921ad57a2f5a467ec8efdc857b6695276e157e /src/lib/ecore | |
parent | 165ba39b2cf4cf468724a65c53c594589a239543 (diff) |
efl: fix build with debug profile.
SVN revision: 80406
Diffstat (limited to 'src/lib/ecore')
-rw-r--r-- | src/lib/ecore/ecore_timer.c | 8 |
1 files 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) | |||
532 | #ifdef WANT_ECORE_TIMER_DUMP | 532 | #ifdef WANT_ECORE_TIMER_DUMP |
533 | Eina_Strbuf *result; | 533 | Eina_Strbuf *result; |
534 | char *out; | 534 | char *out; |
535 | Ecore_Timer *tm; | 535 | Ecore_Timer_Private_Data *tm; |
536 | Eina_List *tmp = NULL; | 536 | Eina_List *tmp = NULL; |
537 | int living_timer = 0; | 537 | int living_timer = 0; |
538 | int unknow_timer = 0; | 538 | int unknow_timer = 0; |
539 | 539 | ||
540 | EINA_MAIN_LOOP_CHECK_RETURN(NULL); | 540 | EINA_MAIN_LOOP_CHECK_RETURN_VAL(NULL); |
541 | _ecore_lock(); | 541 | _ecore_lock(); |
542 | result = eina_strbuf_new(); | 542 | result = eina_strbuf_new(); |
543 | 543 | ||
@@ -960,8 +960,8 @@ static int | |||
960 | _ecore_timer_cmp(const void *d1, | 960 | _ecore_timer_cmp(const void *d1, |
961 | const void *d2) | 961 | const void *d2) |
962 | { | 962 | { |
963 | const Ecore_Timer *t1 = d1; | 963 | const Ecore_Timer_Private_Data *t1 = d1; |
964 | const Ecore_Timer *t2 = d2; | 964 | const Ecore_Timer_Private_Data *t2 = d2; |
965 | 965 | ||
966 | return (int)((t1->in - t2->in) * 100); | 966 | return (int)((t1->in - t2->in) * 100); |
967 | } | 967 | } |