Anastasia Klimchuk has submitted this change. ( https://review.coreboot.org/c/flashrom/+/86679?usp=email )
Change subject: tests/chip: fix print format errors in gcc 14.2.0 ......................................................................
tests/chip: fix print format errors in gcc 14.2.0
Change-Id: I8c461accefddce3d5ee33b0fb6b91c434d721945 Signed-off-by: Antonio Vázquez Blanco antoniovazquezblanco@gmail.com Reviewed-on: https://review.coreboot.org/c/flashrom/+/86679 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Anastasia Klimchuk aklm@chromium.org Reviewed-by: Elyes Haouas ehaouas@noos.fr --- M tests/chip.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Anastasia Klimchuk: Looks good to me, approved Elyes Haouas: Looks good to me, but someone else must approve build bot (Jenkins): Verified
diff --git a/tests/chip.c b/tests/chip.c index 95c8616..be82dbe 100644 --- a/tests/chip.c +++ b/tests/chip.c @@ -92,7 +92,7 @@ }
if (current >= total - 1) - printf("Progress almost complete for stage %d, current %ld, total %ld\n", stage, current, total); + printf("Progress almost complete for stage %d, current %zu, total %zu\n", stage, current, total);
progress_user_data->last_seen[stage] = current; }