From 2b741aba7ac9f3cd1488f86dd5e1fe11d579eb9a Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 27 Oct 2020 20:27:21 +0100 Subject: Norming libft --- libft/src/ft_putnbr_base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libft/src/ft_putnbr_base.c') diff --git a/libft/src/ft_putnbr_base.c b/libft/src/ft_putnbr_base.c index 86c0539..f8495f5 100644 --- a/libft/src/ft_putnbr_base.c +++ b/libft/src/ft_putnbr_base.c @@ -14,8 +14,8 @@ void ft_putnbr_base(long nb, char *base) { - long i; - unsigned char size; + long i; + unsigned char size; i = nb; size = ft_strlen(base); -- cgit v1.2.3