diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-06-12 02:12:59 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-06-12 02:12:59 -0600 |
commit | 9d08c8a91e3264c712ba0f842999e2ef02c71325 (patch) | |
tree | 7398b5b7c8619563a5c16be7a8b31b5a7e3e91bc /cmd/sbc_harness/fs_harness_flash_bin.c | |
parent | c3cf3680c26e9ded8da52f38258d5227438cbee5 (diff) |
/harness/flash.bin: Fix log statement still using printf formatters
Diffstat (limited to 'cmd/sbc_harness/fs_harness_flash_bin.c')
-rw-r--r-- | cmd/sbc_harness/fs_harness_flash_bin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/sbc_harness/fs_harness_flash_bin.c b/cmd/sbc_harness/fs_harness_flash_bin.c index 8eebe9e..9a5bb2f 100644 --- a/cmd/sbc_harness/fs_harness_flash_bin.c +++ b/cmd/sbc_harness/fs_harness_flash_bin.c @@ -121,7 +121,7 @@ static void ab_flash_write_sector(size_t pos, uint8_t *dat) { pos += DATA_HSIZE; - log_infoln("write flash sector @ %zu...", pos); + log_infoln("write flash sector @ ", (base16_u32_, pos), "..."); if (memcmp(dat, DATA_START+pos, FLASH_SECTOR_SIZE) != 0) { bool saved = cr_save_and_disable_interrupts(); flash_range_erase(pos, FLASH_SECTOR_SIZE); |