fixed looping bug in conversion function

This commit is contained in:
Lauchmelder 2022-01-20 16:44:42 +01:00
parent 34b26797a1
commit c6527da081
2 changed files with 2 additions and 1 deletions

View file

@ -63,7 +63,7 @@ char* ltoa(long number, char* string, int base)
*string++ = '-';
}
itoa(number, string, base);
ultoa(number, string, base);
return old_string;
}