From 0ff36406eebb8cf2006cedd504d8330eaac19034 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Fri, 1 Jul 2016 16:14:45 +0200 Subject: [PATCH] unused variable fix --- verbosity.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/verbosity.c b/verbosity.c index 696f983775..a11e0ee0a0 100644 --- a/verbosity.c +++ b/verbosity.c @@ -84,12 +84,13 @@ void retro_main_log_file_deinit(void) #if !defined(HAVE_LOGGER) void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap) { - FILE *fp = NULL; #if TARGET_OS_IPHONE static int asl_inited = 0; #if !TARGET_IPHONE_SIMULATOR static aslclient asl_client; #endif +#else + FILE *fp = NULL; #endif if (!verbosity_is_enabled())