diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-10 06:18:29 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-10 06:18:29 +0000 |
| commit | 6ad7eaef3291d0fb177a2ffabba0b2b5ac1a2ed2 (patch) | |
| tree | a215ed7c6c7114eeff63bf6c685fd5e8a401fe5d /util | |
| parent | 90fada0a2399e11251ec0180a8f4075de8163b6c (diff) | |
Revert "util/nvmutil: don't use zx printf specifier"
This reverts commit ba3cf14faa0c1e55e82d92795a07ec82eb121fcf.
Diffstat (limited to 'util')
| -rw-r--r-- | util/nvmutil/nvmutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index caa03e28..d86b5822 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -1076,7 +1076,7 @@ hexdump(size_t partnum) uint16_t val16; for (row = 0; row < 8; row++) { - printf("%08lx ", (size_t)row << 4); + printf("%08zx ", (size_t)row << 4); for (c = 0; c < 8; c++) { val16 = nvm_word((row << 3) + c, partnum); if (c == 4) |
