Swap quick and full format entries in the file system list, so that quick format will be the default.

svn path=/trunk/; revision=63692
This commit is contained in:
Eric Kohl 2014-07-06 12:33:11 +00:00
parent 97cbf95b0d
commit 8baf5990ef

View file

@ -48,7 +48,7 @@ FS_AddProvider(
Item->FileSystem = FileSystem;
Item->FormatFunc = FormatFunc;
Item->ChkdskFunc = ChkdskFunc;
Item->QuickFormat = FALSE;
Item->QuickFormat = TRUE;
InsertTailList(&List->ListHead, &Item->ListEntry);
if (!FormatFunc)
@ -61,7 +61,7 @@ FS_AddProvider(
Item->FileSystem = FileSystem;
Item->FormatFunc = FormatFunc;
Item->ChkdskFunc = ChkdskFunc;
Item->QuickFormat = TRUE;
Item->QuickFormat = FALSE;
InsertTailList(&List->ListHead, &Item->ListEntry);
}