mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-05 18:31:32 +00:00
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>
This commit is contained in:
parent
5a742b5557
commit
d71cff42e4
@ -916,11 +916,8 @@ static int init_directories(BDRVVVFATState* s,
|
|||||||
cluster = mapping->end;
|
cluster = mapping->end;
|
||||||
|
|
||||||
if(cluster > s->cluster_count) {
|
if(cluster > s->cluster_count) {
|
||||||
fprintf(stderr,"Directory does not fit in FAT%d (capacity %s)\n",
|
fprintf(stderr,"Directory does not fit in FAT%d (capacity %.2f MB)\n",
|
||||||
s->fat_type,
|
s->fat_type, s->sector_count / 2000.0);
|
||||||
s->fat_type == 12 ? s->sector_count == 2880 ? "1.44 MB"
|
|
||||||
: "2.88 MB"
|
|
||||||
: "504MB");
|
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user