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