aboutsummaryrefslogtreecommitdiff
path: root/src/common/log.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-06-21 19:03:22 +0000
committerNick Mathewson <nickm@torproject.org>2003-06-21 19:03:22 +0000
commitefbcd71b9ba03c7f931b2c66a3e1b91c5f6d3eeb (patch)
tree825ddc8643dd1fabf34cb390b2d49ef7ca07aa88 /src/common/log.h
parent49f082fcee43d23a3f25b92d1c3f1ce4c235cd21 (diff)
downloadtor-efbcd71b9ba03c7f931b2c66a3e1b91c5f6d3eeb.tar
tor-efbcd71b9ba03c7f931b2c66a3e1b91c5f6d3eeb.tar.gz
Remove false warnings from printf checks
svn:r340
Diffstat (limited to 'src/common/log.h')
-rw-r--r--src/common/log.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/log.h b/src/common/log.h
index 0cf7c0dd6..2d77009ad 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);