util/nvmutil: tidy up hexdump()

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-09 16:54:42 +00:00
parent d3b567edcf
commit f34d020a20
+1 -1
View File
@@ -1052,7 +1052,7 @@ hexdump(size_t partnum)
uint16_t val16;
for (row = 0; row < 8; row++) {
printf("%08zx ", row << 4);
printf("%08zx ", (size_t)row << 4);
for (c = 0; c < 8; c++) {
val16 = nvm_word((row << 3) + c, partnum);
if (c == 4)