From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RNSQw-0002OE-Ix for qemu-devel@nongnu.org; Mon, 07 Nov 2011 11:52:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RNSQs-0004qX-Bh for qemu-devel@nongnu.org; Mon, 07 Nov 2011 11:52:30 -0500 Received: from mx1.redhat.com ([209.132.183.28]:10433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RNSQs-0004qO-40 for qemu-devel@nongnu.org; Mon, 07 Nov 2011 11:52:26 -0500 From: Kevin Wolf Date: Mon, 7 Nov 2011 17:55:17 +0100 Message-Id: <1320684918-6483-11-git-send-email-kwolf@redhat.com> In-Reply-To: <1320684918-6483-1-git-send-email-kwolf@redhat.com> References: <1320684918-6483-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 10/11] vvfat: do not hardcode sector counts in error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Paolo Bonzini Signed-off-by: Paolo Bonzini Signed-off-by: Kevin Wolf --- block/vvfat.c | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/block/vvfat.c b/block/vvfat.c index 3e7b407..faf2947 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -916,11 +916,8 @@ static int init_directories(BDRVVVFATState* s, cluster = mapping->end; if(cluster > s->cluster_count) { - fprintf(stderr,"Directory does not fit in FAT%d (capacity %s)\n", - s->fat_type, - s->fat_type == 12 ? s->sector_count == 2880 ? "1.44 MB" - : "2.88 MB" - : "504MB"); + fprintf(stderr,"Directory does not fit in FAT%d (capacity %.2f MB)\n", + s->fat_type, s->sector_count / 2000.0); return -EINVAL; } -- 1.7.6.4