From f6a3809d7fd111642dbd492fd575afb5f5747e43 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 7 May 2015 09:27:51 +0200 Subject: [PATCH] (runloop_data.c) Prevent warning --- runloop_data.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runloop_data.c b/runloop_data.c index d2c2de7bc2..c65efcd6e5 100644 --- a/runloop_data.c +++ b/runloop_data.c @@ -111,8 +111,9 @@ static void data_runloop_iterate(bool is_thread, data_runloop_t *runloop) static bool rarch_main_data_active(data_runloop_t *runloop) { bool image_active, nbio_active, http_active, - http_conn_active, overlay_active, db_active; + http_conn_active, overlay_active; bool active = false; + bool db_active = false; driver_t *driver = driver_get_ptr(); nbio_handle_t *nbio = runloop ? &runloop->nbio : NULL; @@ -157,6 +158,7 @@ static bool rarch_main_data_active(data_runloop_t *runloop) (void)http_active; (void)http_conn_active; (void)overlay_active; + (void)db_active; #if 0 RARCH_LOG("runloop nbio : %d, image: %d, http: %d, http conn: %d, overlay: %d\n", nbio_active, image_active,