diff options
author | Qi Wang <interwq@gwu.edu> | 2019-03-29 20:31:02 (GMT) |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-03-29 22:56:53 (GMT) |
commit | 0101d5ebef7230ef5aa1597be425e2a60e92f348 (patch) | |
tree | cdab7bda7607fb0905555a1e69cfa82e2bb9bdbb | |
parent | 59d98919482b2a101c4092428a4c0092abb797a1 (diff) | |
download | jemalloc-0101d5ebef7230ef5aa1597be425e2a60e92f348.zip jemalloc-0101d5ebef7230ef5aa1597be425e2a60e92f348.tar.gz jemalloc-0101d5ebef7230ef5aa1597be425e2a60e92f348.tar.bz2 |
Avoid check_min for opt_lg_extent_max_active_fit.
This fixes a compiler warning.
-rw-r--r-- | src/jemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jemalloc.c b/src/jemalloc.c index bb70395..c8afa9c 100644 --- a/src/jemalloc.c +++ b/src/jemalloc.c @@ -1252,7 +1252,7 @@ malloc_conf_init(sc_data_t *sc_data, unsigned bin_shard_sizes[SC_NBINS]) { false) CONF_HANDLE_SIZE_T(opt_lg_extent_max_active_fit, "lg_extent_max_active_fit", 0, - (sizeof(size_t) << 3), yes, yes, false) + (sizeof(size_t) << 3), no, yes, false) if (strncmp("percpu_arena", k, klen) == 0) { bool match = false; |