diff options
Diffstat (limited to 'libft/src/ft_itoa_s.c')
-rw-r--r-- | libft/src/ft_itoa_s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libft/src/ft_itoa_s.c b/libft/src/ft_itoa_s.c index 98088e3..284a02f 100644 --- a/libft/src/ft_itoa_s.c +++ b/libft/src/ft_itoa_s.c @@ -14,7 +14,7 @@ void ft_itoa_s(char str[], long n) { - long nb; + long nb; unsigned char i; i = ft_intlen(n) - 1; |