https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6fb3dcd312e72a5264398…
commit 6fb3dcd312e72a5264398f7640ac3bcf531637d3
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sun Jun 9 19:05:24 2019 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Sun Jun 9 19:05:24 2019 +0200
[FASTFAT] Adjust the 'UnCleanCount', followng commit 9c3c0d12.
---
drivers/filesystems/fastfat/misc.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/filesystems/fastfat/misc.c b/drivers/filesystems/fastfat/misc.c
index b0721230cd..f3054633c5 100644
--- a/drivers/filesystems/fastfat/misc.c
+++ b/drivers/filesystems/fastfat/misc.c
@@ -130,7 +130,7 @@ VfatDispatchRequest(
break;
case IRP_MJ_WRITE:
- Status = VfatWrite (IrpContext);
+ Status = VfatWrite(IrpContext);
break;
case IRP_MJ_FILE_SYSTEM_CONTROL:
@@ -138,11 +138,11 @@ VfatDispatchRequest(
break;
case IRP_MJ_QUERY_INFORMATION:
- Status = VfatQueryInformation (IrpContext);
+ Status = VfatQueryInformation(IrpContext);
break;
case IRP_MJ_SET_INFORMATION:
- Status = VfatSetInformation (IrpContext);
+ Status = VfatSetInformation(IrpContext);
break;
case IRP_MJ_DIRECTORY_CONTROL:
@@ -439,9 +439,9 @@ VfatCheckForDismount(
* It seems to be related to the fact that the volume root directory as
* well as auxiliary data stream(s) are still opened, and only these are
* allowed to be opened at that moment. After analysis it appears that for
- * the ReactOS' fastfat, this number is equal to "3".
+ * the ReactOS' fastfat, this number is equal to "2".
*/
- UnCleanCount = 3;
+ UnCleanCount = 2;
/* Lock VPB */
IoAcquireVpbSpinLock(&OldIrql);