Increase FAT32 minimum size to 33 MiB (#668491)

Closes Bug #668491 - Formatting small FAT32 partitions (32MB)
                     violates FAT32 specifications
This commit is contained in:
Curtis Gedak 2012-01-25 16:52:51 -07:00
parent bff59261d2
commit fcdd853cb9
1 changed files with 1 additions and 1 deletions

View File

@ -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 ;
}