From 9f50aaea4e390df819cc09773b7b3126443ab72e Mon Sep 17 00:00:00 2001 From: Camille Chauvet Date: Tue, 24 Jan 2023 16:15:20 +0100 Subject: [PATCH] normed --- libftx/extra/ft_realloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libftx/extra/ft_realloc.c b/libftx/extra/ft_realloc.c index d97c266..c22f1ff 100644 --- a/libftx/extra/ft_realloc.c +++ b/libftx/extra/ft_realloc.c @@ -14,7 +14,7 @@ void *ft_realloc(void *tab, size_t size, size_t new_size, int bytes) { - char *new; + char *new; size_t i; new = ft_calloc(new_size, bytes);