mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:42:57 +00:00
fix error check
svn path=/trunk/; revision=29888
This commit is contained in:
parent
cd76b4ba4b
commit
f20c2c30a3
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ CheckVolume(
|
||||||
|
|
||||||
/* Load the provider which will do the chkdsk */
|
/* Load the provider which will do the chkdsk */
|
||||||
Provider = LoadProvider(FileSystem);
|
Provider = LoadProvider(FileSystem);
|
||||||
if (!NT_SUCCESS(Status))
|
if (Provider == NULL)
|
||||||
{
|
{
|
||||||
DPRINT1("LoadProvider() failed\n");
|
DPRINT1("LoadProvider() failed\n");
|
||||||
PrintString(" Unable to verify a %S volume\n", FileSystem);
|
PrintString(" Unable to verify a %S volume\n", FileSystem);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue