From 932910a75eaa1493e6e4180c29b2c7f9f8f3e3c2 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 20 May 2012 11:43:57 +0000 Subject: fixed some "comparison is always true/false" warnings reported by clang by Firewave in timer.c I have commented not removed lines that are always false --- src/osd/sdl/sdlwork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/osd/sdl/sdlwork.c') diff --git a/src/osd/sdl/sdlwork.c b/src/osd/sdl/sdlwork.c index c2798b17752..74cb625d755 100644 --- a/src/osd/sdl/sdlwork.c +++ b/src/osd/sdl/sdlwork.c @@ -310,7 +310,7 @@ int osd_work_queue_wait(osd_work_queue *queue, osd_ticks_t timeout) void osd_work_queue_free(osd_work_queue *queue) { // if we have threads, clean them up - if (queue->threads >= 0 && queue->thread != NULL) + if (queue->thread != NULL) { int threadnum; -- cgit v1.2.3