aboutsummaryrefslogtreecommitdiff
path: root/src/common/log.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-03-16 17:11:27 -0400
committerNick Mathewson <nickm@torproject.org>2011-03-16 17:11:30 -0400
commit3310dd23583dd0a799477bb042cb06c3c058147b (patch)
treecbc106c1b92c2f01b71556bbf306b7d507cd1445 /src/common/log.c
parent6617822b841e32d6339bac13c79dd5f2b566c3c6 (diff)
downloadtor-3310dd23583dd0a799477bb042cb06c3c058147b.tar.gz
tor-3310dd23583dd0a799477bb042cb06c3c058147b.zip
Clean up whitespace
Diffstat (limited to 'src/common/log.c')
-rw-r--r--src/common/log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/log.c b/src/common/log.c
index c1a61d0314..28d002967b 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -390,7 +390,7 @@ logv(int severity, log_domain_mask_t domain, const char *funcname,
/** Output a message to the log. It gets logged to all logfiles that
* care about messages with <b>severity</b> in <b>domain</b>. The content
- * if formatted printf style
+ * is formatted printf style basedc on <b>format</b> and extra arguments.
* */
void
tor_log(int severity, log_domain_mask_t domain, const char *format, ...)
@@ -406,8 +406,8 @@ tor_log(int severity, log_domain_mask_t domain, const char *format, ...)
/** Output a message to the log, prefixed with a function name <b>fn</b>. */
#ifdef __GNUC__
/** GCC-based implementation of the log_fn backend, used when we have
- * variadic macros. All arguments are as for log_fn, except for <b>fn</b>, which
- * is the name of the calling functions. */
+ * variadic macros. All arguments are as for log_fn, except for
+ * <b>fn</b>, which is the name of the calling functions. */
void
_log_fn(int severity, log_domain_mask_t domain, const char *fn,
const char *format, ...)