From 9d08c8a91e3264c712ba0f842999e2ef02c71325 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Thu, 12 Jun 2025 02:12:59 -0600 Subject: /harness/flash.bin: Fix log statement still using printf formatters --- cmd/sbc_harness/fs_harness_flash_bin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/sbc_harness/fs_harness_flash_bin.c') 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); -- cgit v1.2.3-2-g168b