mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
Use uint64_t instead of u64 in put_dec()
Use the correct type required by do_div(). Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -270,7 +270,7 @@ static char *put_dec_full(char *buf, unsigned q)
|
||||
return buf;
|
||||
}
|
||||
/* No inlining helps gcc to use registers better */
|
||||
static noinline char *put_dec(char *buf, u64 num)
|
||||
static noinline char *put_dec(char *buf, uint64_t num)
|
||||
{
|
||||
while (1) {
|
||||
unsigned rem;
|
||||
|
Reference in New Issue
Block a user