diff options
Diffstat (limited to 'plugins/helpers/gen_helpers.h')
-rw-r--r-- | plugins/helpers/gen_helpers.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/helpers/gen_helpers.h b/plugins/helpers/gen_helpers.h index c4c46dc6bd..f084929244 100644 --- a/plugins/helpers/gen_helpers.h +++ b/plugins/helpers/gen_helpers.h @@ -46,16 +46,16 @@ int AddDebugLogMessage(const TCHAR* fmt, ...); #define log_debugA AddDebugLogMessageA
#define log_debug AddDebugLogMessage
#else
-static __inline int log_debugA(const char* fmt, ...) { return 0; }
-static __inline int log_debug(const TCHAR* fmt, ...) { return 0; }
+static __inline int log_debugA(const char*, ...) { return 0; }
+static __inline int log_debug(const TCHAR*, ...) { return 0; }
#endif
#if LOGLEVEL >= __LOGLEVEL_INFO
#define log_infoA AddDebugLogMessageA
#define log_info AddDebugLogMessage
#else
-static __inline int log_infoA(const char* fmt, ...) { return 0; }
-static __inline int log_info(const TCHAR* fmt, ...) { return 0; }
+static __inline int log_infoA(const char*, ...) { return 0; }
+static __inline int log_info(const TCHAR*, ...) { return 0; }
#endif
#endif
|