diff options
author | Roger Dingledine <arma@torproject.org> | 2005-11-01 06:12:51 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-11-01 06:12:51 +0000 |
commit | c68cadc0c8d29866a2ce8fd664165c90cab532aa (patch) | |
tree | 4bb31e7a69963a0519f13474e06540d44aeda294 /src/common/util.h | |
parent | 6dafca62f08414c386b242e34fbdbae21848d5e6 (diff) | |
download | tor-c68cadc0c8d29866a2ce8fd664165c90cab532aa.tar.gz tor-c68cadc0c8d29866a2ce8fd664165c90cab532aa.zip |
tor_assert had a misleading comment
svn:r5338
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h index 969d6152e7..eabd4278b9 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -44,7 +44,7 @@ _SHORT_FILE_, __LINE__, __FUNCTION__, #expr); \ fprintf(stderr,"%s:%d %s: Assertion %s failed; aborting.\n", \ _SHORT_FILE_, __LINE__, __FUNCTION__, #expr); \ - abort(); /* unreached */ \ + abort(); \ } } while (0) #endif |