ecore: Remove redundant variable

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61281
This commit is contained in:
Mike McCormack 2011-07-12 11:56:24 +00:00 committed by Mike McCormack
parent 9871789a5e
commit 6052bbe9c1
1 changed files with 1 additions and 4 deletions

View File

@ -604,10 +604,7 @@ _ecore_main_gsource_check(GSource *source __UNUSED__)
/* check timers after updating loop time */
_ecore_time_loop_time = ecore_time_get();
if (!ret && _ecore_timers_exists())
{
double next_time = _ecore_timer_next_get();
ret = _ecore_timers_exists() && (0.0 == next_time);
}
ret = (0.0 == _ecore_timer_next_get());
_ecore_timer_enable_new();