diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-12-15 14:32:55 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-12-15 14:40:49 -0500 |
commit | e56747f9cf29ed788baf8805bfe391925d8a19da (patch) | |
tree | 2a8c6ec2bb649ca4f0dc86d103ed358550ec533a /src/common/log.c | |
parent | d086c9a7f73ce5b9b7cf4add07fa7d071b829081 (diff) | |
download | tor-e56747f9cf29ed788baf8805bfe391925d8a19da.tar.gz tor-e56747f9cf29ed788baf8805bfe391925d8a19da.zip |
Refactor a bit so that it is safe to include math.h, and mostly not needed.
Diffstat (limited to 'src/common/log.c')
-rw-r--r-- | src/common/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c index 5b5b9e086d..ef65be8a3d 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -328,7 +328,7 @@ logv(int severity, log_domain_mask_t domain, const char *funcname, /** Output a message to the log. */ void -_log(int severity, log_domain_mask_t domain, const char *format, ...) +tor_log(int severity, log_domain_mask_t domain, const char *format, ...) { va_list ap; if (severity > _log_global_min_severity) |