12.1 regression

This commit is contained in:
Riccardo 2019-07-03 02:04:25 -07:00
parent 955842bae6
commit 385e33b32c
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ void putui(uint32_t i) {
str[idx] = (i_copy % 10) + 0x30;
idx--;
i_copy /= 10;
} while (i_copy / 10 != 0);
} while ((i / 10) != 0);
puts(str + idx + 1);
}