summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 2dcae99889..044e5f73e3 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1673,9 +1673,9 @@ bool dbg_mmc_info(void)
(int) mmc_extract_bits(card->cid, 0, 8),
(int) mmc_extract_bits(card->cid, 8, 16));
lcd_puts(0, 4, pbuf);
- snprintf(pbuf, sizeof(pbuf), "Blocks: %08lx", card->numblocks);
+ snprintf(pbuf, sizeof(pbuf), "Blocks: 0x%06lx", card->numblocks);
lcd_puts(0, 5, pbuf);
- snprintf(pbuf, sizeof(pbuf), "Blocksize: %d", card->blocksize);
+ snprintf(pbuf, sizeof(pbuf), "Blksz.: %d", card->blocksize);
lcd_puts(0, 6, pbuf);
}
else /* Technical details */