Antonio Vázquez Blanco has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/86679?usp=email )
Change subject: tests/chip: fix print format errors ......................................................................
tests/chip: fix print format errors
Change-Id: I8c461accefddce3d5ee33b0fb6b91c434d721945 Signed-off-by: Antonio Vázquez Blanco antoniovazquezblanco@gmail.com --- M tests/chip.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/79/86679/1
diff --git a/tests/chip.c b/tests/chip.c index 25bb8db..d26fbc8 100644 --- a/tests/chip.c +++ b/tests/chip.c @@ -91,7 +91,7 @@ }
if (flash->progress_state->current >= flash->progress_state->total - 1) - printf("Progress almost complete for stage %d, current %ld, total %ld\n", + printf("Progress almost complete for stage %d, current %lld, total %lld\n", flash->progress_state->stage, flash->progress_state->current, flash->progress_state->total);
progress_user_data->last_seen[flash->progress_state->stage] = flash->progress_state->current;