summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid T. Goldblatt <davidtgoldblatt@gmail.com>2017-10-02 01:54:25 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-12-19 00:29:10 (GMT)
commit901d94a2b06df09c960836901f6a81a0d3d00732 (patch)
treefe93daf1531cd91e4e135572fb8fd2fd29b11552 /src
parent8aafa270fd56c36db374fa9f294217fa80151b3d (diff)
downloadjemalloc-901d94a2b06df09c960836901f6a81a0d3d00732.zip
jemalloc-901d94a2b06df09c960836901f6a81a0d3d00732.tar.gz
jemalloc-901d94a2b06df09c960836901f6a81a0d3d00732.tar.bz2
Rename cache_alloc_easy to cache_bin_alloc_easy.
This lives in the cache_bin module; just a typo.
Diffstat (limited to 'src')
-rw-r--r--src/tcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tcache.c b/src/tcache.c
index 6d51673..a769a6b 100644
--- a/src/tcache.c
+++ b/src/tcache.c
@@ -95,7 +95,7 @@ tcache_alloc_small_hard(tsdn_t *tsdn, arena_t *arena, tcache_t *tcache,
if (config_prof) {
tcache->prof_accumbytes = 0;
}
- ret = cache_alloc_easy(tbin, tcache_success);
+ ret = cache_bin_alloc_easy(tbin, tcache_success);
return ret;
}