From 22c517117f33534f6d4bd3b7514c7ac61c184a4c Mon Sep 17 00:00:00 2001 From: devilhorns Date: Fri, 3 Jun 2011 00:26:19 +0000 Subject: [PATCH] Evas: Fix 'reset_time_interval' may be used uninitialized warning. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@59908 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/engines/common/evas_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/engines/common/evas_pipe.c b/src/lib/engines/common/evas_pipe.c index 1185d21..66085c8 100644 --- a/src/lib/engines/common/evas_pipe.c +++ b/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