From: Michal Simek Date: Fri, 15 Sep 2023 12:12:03 +0000 (+0200) Subject: trace: Use 64bit variable for start and len X-Git-Tag: baikal/mips/sdk6.2~4^2~3^2~8^2~2 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=1abdcf3cd90d4954f332ff06429c4faa783a3655;p=uboot.git 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. Signed-off-by: Michal Simek Reviewed-by: Simon Glass --- diff --git a/tools/proftool.c b/tools/proftool.c index 101bcb6333..869a2a32c5 100644 --- a/tools/proftool.c +++ b/tools/proftool.c @@ -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];