summaryrefslogtreecommitdiffstats
path: root/src/jemalloc.c
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2013-10-21 21:56:27 (GMT)
committerJason Evans <je@fb.com>2013-10-21 21:56:27 (GMT)
commit6556e28be15d9acd8f3835fb9fad90145e1edbff (patch)
treea91c933ce691b61d1b59cfb840fb498f2e28fa44 /src/jemalloc.c
parent0135fb806e4137dc9cdf152541926a2bc95e33f0 (diff)
downloadjemalloc-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.c3
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;
}