From 9d8fe5f651d6f907e2fbc88f8976d96c8a90f3e4 Mon Sep 17 00:00:00 2001 From: deva Date: Thu, 19 Feb 2009 07:59:38 +0000 Subject: Added missing argument to __PRACRO_LOG_VA in PRACRO_XXX_LOG_VA macros. --- server/src/debug.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server') diff --git a/server/src/debug.h b/server/src/debug.h index 319587d..17dad10 100644 --- a/server/src/debug.h +++ b/server/src/debug.h @@ -124,9 +124,9 @@ int __pracro_log_va(const char *func, const int line, enum __pracro_debug_class #define PRACRO_INFO_LOG(ch, fmt...) __PRACRO_LOG(_info, ch, fmt) #define PRACRO_WARN_LOG(ch, fmt...) __PRACRO_LOG(_warn, ch, fmt) #define PRACRO_ERR_LOG(ch, fmt...) __PRACRO_LOG(_err, ch, fmt) -#define PRACRO_INFO_LOG_VA(ch, fmt, a) __PRACRO_LOG_VA(ch, fmt, a) -#define PRACRO_WARN_LOG_VA(ch, fmt, a) __PRACRO_LOG_VA(ch, fmt, a) -#define PRACRO_ERR_LOG_VA(ch, fmt, a) __PRACRO_LOG_VA(ch, fmt, a) +#define PRACRO_INFO_LOG_VA(ch, fmt, a) __PRACRO_LOG_VA(_info, ch, fmt, a) +#define PRACRO_WARN_LOG_VA(ch, fmt, a) __PRACRO_LOG_VA(_warn, ch, fmt, a) +#define PRACRO_ERR_LOG_VA(ch, fmt, a) __PRACRO_LOG_VA(_err, ch, fmt, a) #endif/*WITH_DEBUG*/ -- cgit v1.2.3