From 603484a1da3c07a86465c87dfabed44cefa7763d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 19 Feb 2014 16:30:28 +0100 Subject: [PATCH] (Thread wrapper) Fix unused variable i warning --- gfx/video_thread_wrapper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/video_thread_wrapper.c b/gfx/video_thread_wrapper.c index dad5230364..5db432cd9f 100644 --- a/gfx/video_thread_wrapper.c +++ b/gfx/video_thread_wrapper.c @@ -174,6 +174,7 @@ static void thread_loop(void *data) { thread_video_t *thr = (thread_video_t*)data; unsigned i; + (void)i; for (;;) {