diff options
Diffstat (limited to 'libft/src/ft_uitoa_s.c')
-rw-r--r-- | libft/src/ft_uitoa_s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libft/src/ft_uitoa_s.c b/libft/src/ft_uitoa_s.c index 3a840f5..c02a0dd 100644 --- a/libft/src/ft_uitoa_s.c +++ b/libft/src/ft_uitoa_s.c @@ -15,7 +15,7 @@ void ft_uitoa_s(char str[], unsigned long n) { unsigned long nb; - unsigned char i; + unsigned char i; i = ft_uintlen(n) - 1; if (n == 0) |