From 83efc830e48278518ba57d39a80767b61fc8d021 Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Wed, 17 Jun 2015 20:18:15 +0100 Subject: [PATCH] fix compilation with --disable-threads MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes this error tasks/task_overlay.c: In function ‘rarch_main_data_overlay_iterate’: tasks/task_overlay.c:92:1: error: label at end of compound statement --- tasks/task_overlay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/task_overlay.c b/tasks/task_overlay.c index bab49e3ca8..a6da009c8d 100644 --- a/tasks/task_overlay.c +++ b/tasks/task_overlay.c @@ -89,7 +89,7 @@ void rarch_main_data_overlay_iterate(bool is_thread, void *data) break; } -end: +end: ; #ifdef HAVE_THREADS if (is_thread) slock_unlock(runloop->overlay_lock);