aboutsummaryrefslogtreecommitdiff
path: root/src/common/log.c
diff options
context:
space:
mode:
authorChelsea Holland Komlo <me@chelseakomlo.com>2018-01-22 18:33:22 -0500
committerChelsea Holland Komlo <me@chelseakomlo.com>2018-01-22 18:33:22 -0500
commitd0184963f9731bea82db1958c885ea1e7f7c42d1 (patch)
tree294554d17f90d0a4d495387b4abdb40ab414a5c6 /src/common/log.c
parent510a91af533afb48f9ad8b64d3d2bc4cd707d9b6 (diff)
downloadtor-d0184963f9731bea82db1958c885ea1e7f7c42d1.tar.gz
tor-d0184963f9731bea82db1958c885ea1e7f7c42d1.zip
fixups from code review
Diffstat (limited to 'src/common/log.c')
-rw-r--r--src/common/log.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/log.c b/src/common/log.c
index ebe6c228ce..365a4673a4 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -54,10 +54,10 @@
/** Defining compile-time constants for Tor log levels (used by the Rust
* log wrapper at src/rust/tor_log) */
-const int _LOG_WARN = LOG_WARN;
-const int _LOG_NOTICE = LOG_NOTICE;
-const log_domain_mask_t _LD_GENERAL = LD_GENERAL;
-const log_domain_mask_t _LD_NET = LD_NET;
+const int LOG_WARN_ = LOG_WARN;
+const int LOG_NOTICE_ = LOG_NOTICE;
+const log_domain_mask_t LD_GENERAL_ = LD_GENERAL;
+const log_domain_mask_t LD_NET_ = LD_NET;
/** Information for a single logfile; only used in log.c */
typedef struct logfile_t {