Jacob Garber has uploaded this change for review.

View Change

util/arm_boot_tools/mksunxiboot: Correct format string for longs

%lx is the right format string for printing longs.
Fixes Coverity CID 1229686, 1229687

Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Change-Id: Ib7ab54dc039bdd60969c79f3c881d69fc68f0d2a
---
M util/arm_boot_tools/mksunxiboot/mksunxiboot.c
1 file changed, 2 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/32008/1
diff --git a/util/arm_boot_tools/mksunxiboot/mksunxiboot.c b/util/arm_boot_tools/mksunxiboot/mksunxiboot.c
index 58765b1..493f476 100644
--- a/util/arm_boot_tools/mksunxiboot/mksunxiboot.c
+++ b/util/arm_boot_tools/mksunxiboot/mksunxiboot.c
@@ -156,7 +156,7 @@
return EXIT_FAILURE;
}

- printf("File size: 0x%x\n", file_size);
+ printf("File size: 0x%lx\n", file_size);
if (fread(file_data, file_size, 1, fd_in) != 1) {
fprintf(stderr, "Cannot read %s: %s\n", argv[1],
strerror(errno));
@@ -168,7 +168,7 @@
if (load_size > SRAM_LOAD_MAX_SIZE)
load_size = SRAM_LOAD_MAX_SIZE;

- printf("Load size: 0x%x\n", load_size);
+ printf("Load size: 0x%lx\n", load_size);

fd_out = fopen(argv[2], "w");
if (!fd_out) {

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

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib7ab54dc039bdd60969c79f3c881d69fc68f0d2a
Gerrit-Change-Number: 32008
Gerrit-PatchSet: 1
Gerrit-Owner: Jacob Garber <jgarber1@ualberta.ca>
Gerrit-MessageType: newchange