diff options
author | rustyx <me@rustyx.org> | 2016-02-02 10:52:07 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-02-20 18:55:18 (GMT) |
commit | 3c2c5a5071416b9be6a114ccbc7796443b24f1cd (patch) | |
tree | 86ff6d0f66a1c8d2f2735401e16fad3482a6eb35 | |
parent | efbee8627873fbcee454319573cdf94816b25824 (diff) | |
download | jemalloc-3c2c5a5071416b9be6a114ccbc7796443b24f1cd.zip jemalloc-3c2c5a5071416b9be6a114ccbc7796443b24f1cd.tar.gz jemalloc-3c2c5a5071416b9be6a114ccbc7796443b24f1cd.tar.bz2 |
Fix warning in ipalloc
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal.h.in b/include/jemalloc/internal/jemalloc_internal.h.in index 3b2f75d..aa97d7c 100644 --- a/include/jemalloc/internal/jemalloc_internal.h.in +++ b/include/jemalloc/internal/jemalloc_internal.h.in @@ -1001,8 +1001,8 @@ JEMALLOC_ALWAYS_INLINE void * ipalloc(tsd_t *tsd, size_t usize, size_t alignment, bool zero) { - return (ipallocztm(tsd, usize, alignment, zero, tcache_get(tsd, - NULL), false, NULL)); + return (ipallocztm(tsd, usize, alignment, zero, tcache_get(tsd, true), + false, NULL)); } JEMALLOC_ALWAYS_INLINE size_t |