diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2006-03-09 19:37:13 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2006-03-09 19:37:13 +0000 |
commit | 8de8b3a8e328be181a6ddd9b82cf469eeb0e0d8b (patch) | |
tree | 8b764f13b4a1edb07b91cdb48e4b1e65b607f5b3 /hcid/logging.c | |
parent | cc31145e63f9c87e816267e69e73d74e669563a1 (diff) |
Fix logging functions
Diffstat (limited to 'hcid/logging.c')
-rw-r--r-- | hcid/logging.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/hcid/logging.c b/hcid/logging.c index 9d0ff214..3b31366a 100644 --- a/hcid/logging.c +++ b/hcid/logging.c @@ -32,17 +32,29 @@ #include "hcid.h" -void info(const char *format, va_list ap) +void info(const char *format, ...) { + va_list ap; + + va_start(ap, format); vsyslog(LOG_INFO, format, ap); + va_end(ap); } -void error(const char *format, va_list ap) +void error(const char *format, ...) { + va_list ap; + + va_start(ap, format); vsyslog(LOG_ERR, format, ap); + va_end(ap); } -void debug(const char *format, va_list ap) +void debug(const char *format, ...) { + va_list ap; + + va_start(ap, format); vsyslog(LOG_DEBUG, format, ap); + va_end(ap); } |