mirror of https://github.com/commaai/panda.git
typo
This commit is contained in:
parent
385e33b32c
commit
7cd80de23a
|
@ -323,7 +323,7 @@ void putui(uint32_t i) {
|
|||
str[idx] = (i_copy % 10) + 0x30;
|
||||
idx--;
|
||||
i_copy /= 10;
|
||||
} while ((i / 10) != 0);
|
||||
} while (i_copy != 0);
|
||||
puts(str + idx + 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue