diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/crypto.c | 1 | ||||
-rw-r--r-- | src/common/log.c | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index fd0a494e76..6fed55a27b 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -2711,4 +2711,3 @@ setup_openssl_threading(void) #endif /** @} */ - diff --git a/src/common/log.c b/src/common/log.c index 52c41fb3ce..a073c827e0 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -409,7 +409,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, ...) @@ -425,8 +425,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, ...) |