diff options
author | deva <deva> | 2009-02-19 07:59:38 +0000 |
---|---|---|
committer | deva <deva> | 2009-02-19 07:59:38 +0000 |
commit | 9d8fe5f651d6f907e2fbc88f8976d96c8a90f3e4 (patch) | |
tree | f00b9b0decfdf15af14480ec4e24003a39fbb0ce /server/src/debug.h | |
parent | 243a21d6ee5d377fa2f19f2552fdf583ccc29bb3 (diff) |
Added missing argument to __PRACRO_LOG_VA in PRACRO_XXX_LOG_VA macros.
Diffstat (limited to 'server/src/debug.h')
-rw-r--r-- | server/src/debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
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*/ |