summaryrefslogtreecommitdiffstats
path: root/src/common/log.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-01 16:57:45 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-01 17:05:48 +0200
commit5cd922d1514e629f1aa0d7083272e51decb61175 (patch)
tree9e62feea421f992610f0f463f13486fb53b12db2 /src/common/log.h
parentsvc: added missing function wrapper for SleepThread (diff)
downloadyuzu-5cd922d1514e629f1aa0d7083272e51decb61175.tar
yuzu-5cd922d1514e629f1aa0d7083272e51decb61175.tar.gz
yuzu-5cd922d1514e629f1aa0d7083272e51decb61175.tar.bz2
yuzu-5cd922d1514e629f1aa0d7083272e51decb61175.tar.lz
yuzu-5cd922d1514e629f1aa0d7083272e51decb61175.tar.xz
yuzu-5cd922d1514e629f1aa0d7083272e51decb61175.tar.zst
yuzu-5cd922d1514e629f1aa0d7083272e51decb61175.zip
Diffstat (limited to '')
-rw-r--r--src/common/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.h b/src/common/log.h
index 2543b51a8..3518d4e1d 100644
--- a/src/common/log.h
+++ b/src/common/log.h
@@ -89,7 +89,7 @@ enum LOG_LEVELS {
void GenericLog(LOGTYPES_LEVELS level, LOGTYPES_TYPE type, const char*file, int line,
const char* function, const char* fmt, ...)
#ifdef __GNUC__
- __attribute__((format(printf, 5, 6)))
+ __attribute__((format(printf, 6, 7)))
#endif
;