diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-21 19:12:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-21 19:12:56 +0000 |
commit | be7a33df9d5106fb91c650d80dd0483a5105ba41 (patch) | |
tree | 6daf9de5a53bb9b7d234c8838d18414c61128924 /plugins/helpers | |
parent | 02cb797db83340236b98fbc2b64d1a59808fa6aa (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@11561 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/helpers')
-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
|