Skip to content
Snippets Groups Projects
Commit b9b9af7d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix infinite loop in 32-bit rPi build, in ultoac() - unsigned char?

parent 218d283e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -2247,7 +2247,7 @@ uint usernumber(char *username)
char *ultoac(ulong l, char *string)
{
char str[81];
char i,j,k;
int i,j,k;
sprintf(str,"%lu",l);
i=strlen(str)-1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment