mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 06:46:59 +00:00
trace: Use 64bit variable for start and len
tputq() requires variables to have 64bit width that's why make them 64bit to clean alignment requirement. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/6edb34ef1f10010d2380f964fb6b4fb3dc257799.1694779918.git.michal.simek@amd.com
This commit is contained in:
parent
1290262292
commit
dee8739a1b
1 changed files with 2 additions and 1 deletions
|
@ -1493,7 +1493,8 @@ static int write_pages(struct twriter *tw, enum out_format_t out_format,
|
|||
static int write_flyrecord(struct twriter *tw, enum out_format_t out_format,
|
||||
int *missing_countp, int *skip_countp)
|
||||
{
|
||||
int start, ret, len;
|
||||
unsigned long long start, len;
|
||||
int ret;
|
||||
FILE *fout = tw->fout;
|
||||
char str[200];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue