From fe833fbfcbec7429e52220b64bc35eb3da54b1fc Mon Sep 17 00:00:00 2001 From: starnakin Date: Tue, 30 Jul 2024 14:56:41 +0200 Subject: [PATCH] print more accurate --- src/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/malloc.c b/src/malloc.c index 8fbd08e..694af3c 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -85,7 +85,7 @@ void ft_free(void *ptr) if (i > LARGE) { // THROW ERROR - write(2, "block not found\n", 16); + write(2, "chunk not found\n", 16); } root = allocs_tree[i];