Remove unused variable.

This commit is contained in:
Tom Hacohen 2015-03-05 12:03:55 +00:00
parent 079dbb6dd5
commit e2c1fa0636
1 changed files with 1 additions and 2 deletions

View File

@ -349,7 +349,6 @@ ecore_evas_new(const char *engine_name, int x, int y,
static Eina_Bool
tsuite_feed_event(void *data)
{
static Ecore_Timer *tmr = NULL;
Timer_Data *td = data;
time_t evt_time;
if (!td)
@ -591,7 +590,7 @@ tsuite_feed_event(void *data)
#ifdef DEBUG_TSUITE
printf("%s timer_time=<%f>\n", __func__, timer_time);
#endif
tmr = ecore_timer_add(timer_time, tsuite_feed_event, td);
ecore_timer_add(timer_time, tsuite_feed_event, td);
return ECORE_CALLBACK_CANCEL;
}