mirror of https://github.com/commaai/panda.git
12.1 regression
This commit is contained in:
parent
955842bae6
commit
385e33b32c
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue