diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-04-16 13:48:21 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-04-16 13:48:21 -0400 |
commit | 0e13ff48155ca8cda7483afe730652bed61ba5a0 (patch) | |
tree | b9126ef2880e733de2f08b6b6f7d85c993619e96 | |
parent | 10a1969ca327c517e20aeefdc86f88c95322289d (diff) | |
download | tor-0e13ff48155ca8cda7483afe730652bed61ba5a0.tar.gz tor-0e13ff48155ca8cda7483afe730652bed61ba5a0.zip |
Fix an LCOV exclusion pattern in address.c
-rw-r--r-- | src/common/address.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/address.c b/src/common/address.c index 68ad639411..96b99fa082 100644 --- a/src/common/address.c +++ b/src/common/address.c @@ -1199,7 +1199,7 @@ tor_addr_hash(const tor_addr_t *addr) /* LCOV_EXCL_START */ tor_fragile_assert(); return 0; - /* LCOV_EXCL_END */ + /* LCOV_EXCL_STOP */ } } @@ -1221,7 +1221,7 @@ tor_addr_keyed_hash(const struct sipkey *key, const tor_addr_t *addr) /* LCOV_EXCL_START */ tor_fragile_assert(); return 0; - /* LCOV_EXCL_END */ + /* LCOV_EXCL_STOP */ } } |