From 9257cdc055f644e95d4d99f0cba10e5e706700ac Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Fri, 3 Jun 2011 00:26:19 +0000 Subject: [PATCH] Evas: Fix 'reset_time_interval' may be used uninitialized warning. SVN revision: 59908 --- legacy/evas/src/lib/engines/common/evas_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/engines/common/evas_pipe.c b/legacy/evas/src/lib/engines/common/evas_pipe.c index 1185d21..66085c8 100644 --- a/legacy/evas/src/lib/engines/common/evas_pipe.c +++ b/legacy/evas/src/lib/engines/common/evas_pipe.c @@ -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; -- 2.7.4