diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-06-15 17:25:53 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-06-15 17:28:26 -0400 |
commit | 7b54d7ebbd963a0a40b6ff5109ea0e3eedde534d (patch) | |
tree | d7a0cbfd83a86dc32722ec090e05aca3e477ccc9 /src/common/log.c | |
parent | 327d4c11ddbed709b3cca5bb12265f201797d569 (diff) | |
download | tor-7b54d7ebbd963a0a40b6ff5109ea0e3eedde534d.tar.gz tor-7b54d7ebbd963a0a40b6ff5109ea0e3eedde534d.zip |
Mark src/common tor_assert(0)/tor_fragile_assert() unreached for coverage
I audited this to make sure I was only marking ones that really
should be unreachable.
Diffstat (limited to 'src/common/log.c')
-rw-r--r-- | src/common/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/log.c b/src/common/log.c index e948ccfa04..51309aa472 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -75,7 +75,7 @@ sev_to_string(int severity) case LOG_ERR: return "err"; default: /* Call assert, not tor_assert, since tor_assert * calls log on failure. */ - assert(0); return "UNKNOWN"; + assert(0); return "UNKNOWN"; // LCOV_EXCL_LINE } } @@ -95,7 +95,7 @@ should_log_function_name(log_domain_mask_t domain, int severity) return (domain & (LD_BUG|LD_NOFUNCNAME)) == LD_BUG; default: /* Call assert, not tor_assert, since tor_assert calls log on failure. */ - assert(0); return 0; + assert(0); return 0; // LCOV_EXCL_LINE } } |