From ac355de664fdd4c4a5c716d8b3a190a8202540aa Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Fri, 21 Nov 2008 15:20:25 +0000 Subject: Don't print partition sizes in megabytes, as that is buggy on 5.5G. Use sectors instead git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19170 a1c6a512-1295-4272-9138-f99709370657 --- bootloader/ipod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootloader/ipod.c b/bootloader/ipod.c index 0325245884..cdf939c1fc 100644 --- a/bootloader/ipod.c +++ b/bootloader/ipod.c @@ -298,8 +298,8 @@ void* main(void) } pinfo = disk_partinfo(1); - printf("Partition 1: 0x%02x %ld MB", - pinfo->type, pinfo->size / 2048); + printf("Partition 1: 0x%02x %ld sectors", + pinfo->type, pinfo->size); if (button_was_held || (btn==BUTTON_MENU)) { /* If either the hold switch was on, or the Menu button was held, then -- cgit v1.2.3