diff --git "a/sdk/lib/fslib/vfatlib/vfatlib.c" "b/sdk/lib/fslib/vfatlib/vfatlib.c" index 60e24e5379e..cb90a95d2de 100644 --- "a/sdk/lib/fslib/vfatlib/vfatlib.c" +++ "b/sdk/lib/fslib/vfatlib/vfatlib.c" @@ -448,7 +448,14 @@ VfatChkdsk( /* Set parameters */ FsCheckFlags = 0; if (Verbose) +#ifdef __REACTOS__ + { + FsCheckFlags |= FSCHECK_VERBOSE; + FsCheckFlags |= FSCHECK_LIST_FILES; + } +#else FsCheckFlags |= FSCHECK_VERBOSE; +#endif if (FixErrors) FsCheckFlags |= FSCHECK_READ_WRITE;