unused variable fix
This commit is contained in:
parent
56ef899946
commit
0ff36406ee
|
@ -84,12 +84,13 @@ void retro_main_log_file_deinit(void)
|
||||||
#if !defined(HAVE_LOGGER)
|
#if !defined(HAVE_LOGGER)
|
||||||
void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap)
|
void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
FILE *fp = NULL;
|
|
||||||
#if TARGET_OS_IPHONE
|
#if TARGET_OS_IPHONE
|
||||||
static int asl_inited = 0;
|
static int asl_inited = 0;
|
||||||
#if !TARGET_IPHONE_SIMULATOR
|
#if !TARGET_IPHONE_SIMULATOR
|
||||||
static aslclient asl_client;
|
static aslclient asl_client;
|
||||||
#endif
|
#endif
|
||||||
|
#else
|
||||||
|
FILE *fp = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!verbosity_is_enabled())
|
if (!verbosity_is_enabled())
|
||||||
|
|
Loading…
Reference in New Issue