diff options
author | ilsimo <ilsimo> | 2005-10-26 20:20:25 +0000 |
---|---|---|
committer | ilsimo <ilsimo> | 2005-10-26 20:20:25 +0000 |
commit | ec3016ca878da4e51b34c38416114edcd75378ca (patch) | |
tree | 48d7715e6a4354e03a7cd166a25d10c15698cc69 /common/log.h | |
parent | ba1ea148f47f284b0a0990267fe03de3f36b9d3c (diff) | |
download | xrdp-proprietary-ec3016ca878da4e51b34c38416114edcd75378ca.tar.gz xrdp-proprietary-ec3016ca878da4e51b34c38416114edcd75378ca.zip |
fixing some errors in logging functions
- removing warnings created by LOG_DBG() macro
- fixing syslog message error
- adding platform specific end of line
Diffstat (limited to 'common/log.h')
-rw-r--r-- | common/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/log.h b/common/log.h index ccea0e58..32164484 100644 --- a/common/log.h +++ b/common/log.h @@ -49,7 +49,7 @@ #ifdef DEBUG #define LOG_DBG(s,args...) log_message(LOG_LEVEL_DEBUG,s,args); #else - #define LOG_DBG + #define LOG_DBG(s,args...) #endif struct log_config |