retroarch_logger: Fix linux build

This commit is contained in:
Lioncash 2014-09-13 20:22:16 -04:00
parent 3912b3fee4
commit 7660adeffd

View File

@ -59,7 +59,7 @@
#define RARCH_LOG_V(tag, fmt, vp) do { \
if (RARCH_LOG_VERBOSE) \
{ \
fprintf(LOG_FILE, "RetroArch: %s: " __FUNCTION__); \
fprintf(LOG_FILE, "RetroArch: %s: ", __FUNCTION__); \
fprintf(LOG_FILE, tag);\
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \