mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[USETUP] Our current FAT ChkDsk being a bit slow when using the right path make
it only perform a full check if dirty bit is set (which should never happen *cough*). This is needed because otherwise, ReactOS installation takes forever when IopParseDevice is gone due to slow ChkDsk.
This commit is contained in:
parent
806cd16328
commit
c8f2befb5f
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ ChkdskPartition(
|
|||
Status = FileSystem->ChkdskFunc(DriveRoot,
|
||||
TRUE, /* FixErrors */
|
||||
FALSE, /* Verbose */
|
||||
FALSE, /* CheckOnlyIfDirty */
|
||||
TRUE, /* CheckOnlyIfDirty */
|
||||
FALSE, /* ScanDrive */
|
||||
ChkdskCallback); /* Callback */
|
||||
|
||||
|
|
Loading…
Reference in a new issue