diff options
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_uitoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libft/src/ft_uitoa.c b/libft/src/ft_uitoa.c index 9a58b32..89d8245 100644 --- a/libft/src/ft_uitoa.c +++ b/libft/src/ft_uitoa.c @@ -17,7 +17,7 @@ char *ft_uitoa(unsigned long n) { char *s; unsigned long nb; - unsigned char i; + unsigned char i; i = ft_uintlen(n) - 1; if (!(s = (char*)malloc((i + 2) * sizeof(char)))) |