diff options
author | Danny Lin <danny@kdrag0n.dev> | 2021-03-20 22:27:28 -0700 |
---|---|---|
committer | alk3pInjection <5e147612@kscope.ink> | 2022-05-08 12:40:50 +0800 |
commit | cc72b613a740f183df86622b02f333b2e6096a7b (patch) | |
tree | fa0b272a4b25285f41be89c98e02aa4ecf64c829 | |
parent | e36e52fb6ec54bc47e17e849ca5a3a301eaa6d05 (diff) |
Fix typo in tcache stats check
Change-Id: I1682acb9b57f6de4bacd4c69d55b21a96cc09d5b
-rw-r--r-- | include/jemalloc/internal/tcache_inlines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/tcache_inlines.h b/include/jemalloc/internal/tcache_inlines.h index 0cca1224..ed81fc41 100644 --- a/include/jemalloc/internal/tcache_inlines.h +++ b/include/jemalloc/internal/tcache_inlines.h @@ -150,7 +150,7 @@ tcache_alloc_large(tsd_t *tsd, arena_t *arena, tcache_t *tcache, size_t size, memset(ret, 0, usize); } -#if defined(ANDROID_ENABLE_TCACHE_STATUS) +#if defined(ANDROID_ENABLE_TCACHE_STATS) if (config_stats) { bin->tstats.nrequests++; } |