From 0ec2c066c3c068fb396bd1bd2588e6f57e14e3e8 Mon Sep 17 00:00:00 2001 From: vms Date: Tue, 2 Apr 2019 13:58:16 +0300 Subject: [PATCH] fix cmt --- src/malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/malloc/malloc.c b/src/malloc/malloc.c index 20a94332..74a23afb 100644 --- a/src/malloc/malloc.c +++ b/src/malloc/malloc.c @@ -284,7 +284,7 @@ static void trim(struct chunk *self, size_t n) __bin_chunk(split); } -// returns chunk which size is more then given n from the 64-th unsorted bin +// returns chunk which size is more then given n from the 63-th unsorted bin // if there is no suitable chunk returns 0 static struct chunk *get_chunk_from_unsorted_bin(size_t n) {