summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_itoa_base.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libft/src/ft_itoa_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libft/src/ft_itoa_base.c b/libft/src/ft_itoa_base.c
index 091b47c..5889240 100644
--- a/libft/src/ft_itoa_base.c
+++ b/libft/src/ft_itoa_base.c
@@ -15,8 +15,8 @@
char *ft_itoa_base(long n, char *base)
{
- char *s;
- long nb;
+ char *s;
+ long nb;
unsigned char i;
i = ft_intlen_base(n, base) - 1;