Increase FAT32 minimum size to 33 MiB (#668491)
Closes Bug #668491 - Formatting small FAT32 partitions (32MB) violates FAT32 specifications
This commit is contained in:
parent
bff59261d2
commit
fcdd853cb9
|
@ -64,7 +64,7 @@ FS fat32::get_filesystem_support()
|
|||
|
||||
fs .copy = GParted::FS::GPARTED ;
|
||||
|
||||
fs .MIN = 32 * MEBIBYTE ; //smaller fs'es will cause windows scandisk to fail..
|
||||
fs .MIN = 33 * MEBIBYTE ; //Smaller file systems will cause windows scandisk to fail.
|
||||
|
||||
return fs ;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue