diff options
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_putnbr_base.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |