summaryrefslogtreecommitdiffstats
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-05-27 21:47:50 +0000
committerJens Arnold <amiconn@rockbox.org>2005-05-27 21:47:50 +0000
commit8ca1831a5e87cf4216b3d36a373ca8ed481941f1 (patch)
treee90a5f796d2fda3cf449fe07ad1f4e87470f6e2e /apps/debug_menu.c
parentef32881e96c2574f4244e19ff6c9665c6878d176 (diff)
downloadrockbox-8ca1831a5e87cf4216b3d36a373ca8ed481941f1.tar.gz
rockbox-8ca1831a5e87cf4216b3d36a373ca8ed481941f1.zip
Adjusted MMC debug info.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6530 a1c6a512-1295-4272-9138-f99709370657
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 */