diff options
author | Jason Evans <je@fb.com> | 2013-10-21 21:56:27 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2013-10-21 21:56:27 (GMT) |
commit | 6556e28be15d9acd8f3835fb9fad90145e1edbff (patch) | |
tree | a91c933ce691b61d1b59cfb840fb498f2e28fa44 /src/jemalloc.c | |
parent | 0135fb806e4137dc9cdf152541926a2bc95e33f0 (diff) | |
download | jemalloc-6556e28be15d9acd8f3835fb9fad90145e1edbff.zip jemalloc-6556e28be15d9acd8f3835fb9fad90145e1edbff.tar.gz jemalloc-6556e28be15d9acd8f3835fb9fad90145e1edbff.tar.bz2 |
Prefer not_reached() over assert(false) where appropriate.
Diffstat (limited to 'src/jemalloc.c')
-rw-r--r-- | src/jemalloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/jemalloc.c b/src/jemalloc.c index ae56db6..5cbfc3f 100644 --- a/src/jemalloc.c +++ b/src/jemalloc.c @@ -484,8 +484,7 @@ malloc_conf_init(void) } break; } default: - /* NOTREACHED */ - assert(false); + not_reached(); buf[0] = '\0'; opts = buf; } |