mirror of
https://github.com/reactos/reactos.git
synced 2025-01-08 07:11:16 +00:00
Fix build.
svn path=/trunk/; revision=70435
This commit is contained in:
parent
ed1b816943
commit
11df9cf067
1 changed files with 3 additions and 3 deletions
|
@ -376,7 +376,7 @@ VfatChkdsk(IN PUNICODE_STRING DriveRoot,
|
|||
// NOTE: Returning the value of fs_close looks suspicious.
|
||||
// return fs_close(FALSE);
|
||||
ret = fs_close(FALSE);
|
||||
DPRINT1("No need to check FS; fs_close returning %d\n", ret);
|
||||
DPRINT1("No need to check FS; fs_close returning %d\n", (unsigned int)ret);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -439,8 +439,8 @@ VfatChkdsk(IN PUNICODE_STRING DriveRoot,
|
|||
/* Close the volume */
|
||||
// NOTE: Returning the value of fs_close looks suspicious.
|
||||
// return fs_close(FixErrors) ? STATUS_SUCCESS : STATUS_UNSUCCESSFUL;
|
||||
res = fs_close(FixErrors);
|
||||
DPRINT1("fs_close returning %d\n", ret);
|
||||
ret = fs_close(FixErrors);
|
||||
DPRINT1("fs_close returning %d\n", (unsigned int)ret);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue