util/nvmutil: fix another printf specifier

ditto to last commit

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-10 11:02:39 +00:00
parent fa859d80d5
commit 8d156bcf35

View File

@@ -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)