From b12274f704e7fb2c57d44279f5334f0f90ea312c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 23 Feb 2014 01:56:33 +0100 Subject: [PATCH] (PS3) Get rid of warning: Variable is used before its value is set --- gfx/video_thread_wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/video_thread_wrapper.c b/gfx/video_thread_wrapper.c index 5db432cd9f..3d5daa57fa 100644 --- a/gfx/video_thread_wrapper.c +++ b/gfx/video_thread_wrapper.c @@ -173,7 +173,7 @@ static void thread_reply(thread_video_t *thr, enum thread_cmd cmd) static void thread_loop(void *data) { thread_video_t *thr = (thread_video_t*)data; - unsigned i; + unsigned i = 0; (void)i; for (;;)