summaryrefslogtreecommitdiffstats
path: root/src/chunk_dss.c
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2016-05-31 21:50:21 (GMT)
committerJason Evans <jasone@canonware.com>2016-06-06 03:42:23 (GMT)
commit7d63fed0fd0bb10bd250e40c35558f67f26469cd (patch)
tree4e6e1a7d84906c4b1301b9c78e692a3f15e80ba1 /src/chunk_dss.c
parent714d1640f30726a21898b34ac64b8f2fddb502c7 (diff)
downloadjemalloc-7d63fed0fd0bb10bd250e40c35558f67f26469cd.zip
jemalloc-7d63fed0fd0bb10bd250e40c35558f67f26469cd.tar.gz
jemalloc-7d63fed0fd0bb10bd250e40c35558f67f26469cd.tar.bz2
Rename huge to large.
Diffstat (limited to 'src/chunk_dss.c')
-rw-r--r--src/chunk_dss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunk_dss.c b/src/chunk_dss.c
index f890a5c..f8c968b 100644
--- a/src/chunk_dss.c
+++ b/src/chunk_dss.c
@@ -78,7 +78,7 @@ chunk_alloc_dss(tsdn_t *tsdn, arena_t *arena, void *new_addr, size_t size,
/*
* sbrk() uses a signed increment argument, so take care not to
- * interpret a huge allocation request as a negative increment.
+ * interpret a large allocation request as a negative increment.
*/
if ((intptr_t)size < 0)
return (NULL);