summaryrefslogtreecommitdiff
path: root/src/common/util.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-06-16 15:53:05 -0400
committerNick Mathewson <nickm@torproject.org>2016-06-16 15:53:05 -0400
commita8c766220f1c1d60c7ccb2a1f888423145495942 (patch)
tree967efc62c5b87a37d0dffe42df752f64ca1d403a /src/common/util.c
parenta4189049628134fcfb91a5e45fd69d60e83c86ce (diff)
downloadtor-a8c766220f1c1d60c7ccb2a1f888423145495942.tar.gz
tor-a8c766220f1c1d60c7ccb2a1f888423145495942.zip
Mark an abort() as unreachable.
Diffstat (limited to 'src/common/util.c')
-rw-r--r--src/common/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c
index a80d96ac9b..2f7cc4f892 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -3795,7 +3795,7 @@ format_number_sigsafe(unsigned long x, char *buf, int buf_len,
/* NOT tor_assert; see above. */
if (cp != buf) {
- abort();
+ abort(); // LCOV_EXCL_LINE
}
return len;