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];