mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-25 13:29:03 +02:00
util/nvmutil: fix another printf specifier
ditto to last commit Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -1060,7 +1060,7 @@ hexdump(size_t partnum)
|
||||
uint16_t val16;
|
||||
|
||||
for (row = 0; row < 8; row++) {
|
||||
printf("%08lx ", (size_t)row << 4);
|
||||
printf("%08lx ", (unsigned long)((size_t)row << 4));
|
||||
for (c = 0; c < 8; c++) {
|
||||
val16 = nvm_word((row << 3) + c, partnum);
|
||||
if (c == 4)
|
||||
|
||||
Reference in New Issue
Block a user