diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-06-21 19:03:22 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-06-21 19:03:22 +0000 |
commit | efbcd71b9ba03c7f931b2c66a3e1b91c5f6d3eeb (patch) | |
tree | 825ddc8643dd1fabf34cb390b2d49ef7ca07aa88 /src/common/log.h | |
parent | 49f082fcee43d23a3f25b92d1c3f1ce4c235cd21 (diff) | |
download | tor-efbcd71b9ba03c7f931b2c66a3e1b91c5f6d3eeb.tar.gz tor-efbcd71b9ba03c7f931b2c66a3e1b91c5f6d3eeb.zip |
Remove false warnings from printf checks
svn:r340
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/log.h b/src/common/log.h index 0cf7c0dd6d..2d77009ad1 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -17,6 +17,8 @@ #define CHECK_PRINTF(formatIdx, firstArg) #endif +void log_set_severity(int severity); + /* Outputs a message to stdout and also logs the same message using syslog. */ void log(int severity, const char *format, ...) CHECK_PRINTF(2,3); |