diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-10-05 09:12:07 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-11-04 16:36:25 +0100 |
commit | d71cff42e4cd614986e2d0b8ded7aa3acaf28d92 (patch) | |
tree | 487bc39a737c4e000eb520bc5b49adfd41fa23ea /block | |
parent | 5a742b55576c044a6fe07b42937272e553503ddd (diff) |
vvfat: do not hardcode sector counts in error message
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/vvfat.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/block/vvfat.c b/block/vvfat.c index 3e7b40786f..faf2947664 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; } |