Evas: Fix 'reset_time_interval' may be used uninitialized warning.

SVN revision: 59908
This commit is contained in:
Christopher Michael 2011-06-03 00:26:19 +00:00
parent 1fc436ceb7
commit 9257cdc055
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ evas_common_frameq_schedule_flush_time(int frameq_sz, int thread_no,
long long current_time = 0LL;
long long current_ready_interval = 0LL;
long long theshold_time = SATISFACTION_THRESHOLD * 1000LL; // ms -> usec
long long reset_time_interval;
long long reset_time_interval = 0LL;
long long sleep_time = 0LL;
long long saved_ready_time, saved_ready_interval;
long long time_slept = 0LL;