diff options
author | Jacob Garber <jgarber1@ualberta.ca> | 2019-03-20 21:02:27 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-04-03 16:57:19 +0000 |
commit | 3eebb16c0559282fb199f3e160440b206b8eabeb (patch) | |
tree | d81240e4967fe20c444b9f23df79a595f7495a08 | |
parent | 0a4dcee75f03a0154f7a418d24ec643a020ea401 (diff) | |
download | coreboot-3eebb16c0559282fb199f3e160440b206b8eabeb.tar.xz |
util/arm_boot_tools/mksunxiboot: Correct format strings
%lx is the right format string for printing longs.
Found-by: Coverity Scan, CID 1229686, 1229687
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Change-Id: Ib7ab54dc039bdd60969c79f3c881d69fc68f0d2a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32008
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r-- | util/arm_boot_tools/mksunxiboot/mksunxiboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/arm_boot_tools/mksunxiboot/mksunxiboot.c b/util/arm_boot_tools/mksunxiboot/mksunxiboot.c index 58765b1a6f..493f476731 100644 --- a/util/arm_boot_tools/mksunxiboot/mksunxiboot.c +++ b/util/arm_boot_tools/mksunxiboot/mksunxiboot.c @@ -156,7 +156,7 @@ int main(int argc, char *argv[]) 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 @@ int main(int argc, char *argv[]) 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) { |