Anastasia Klimchuk submitted this change.

View Change

Approvals: Anastasia Klimchuk: Looks good to me, approved Elyes Haouas: Looks good to me, but someone else must approve build bot (Jenkins): Verified
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(-)

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;
}

To view, visit change 86679. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: I8c461accefddce3d5ee33b0fb6b91c434d721945
Gerrit-Change-Number: 86679
Gerrit-PatchSet: 4
Gerrit-Owner: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com>
Gerrit-Reviewer: Anastasia Klimchuk <aklm@chromium.org>
Gerrit-Reviewer: Elyes Haouas <ehaouas@noos.fr>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>