mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Changed failure status report to print hex
svn path=/trunk/; revision=71
This commit is contained in:
parent
8909f04b2c
commit
d0c8759887
1 changed files with 2 additions and 1 deletions
|
@ -76,7 +76,7 @@ BOOLEAN VFATReadSector(IN PDEVICE_OBJECT pDeviceObject,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!NT_SUCCESS(status)) {
|
if (!NT_SUCCESS(status)) {
|
||||||
DbgPrint("IO failed!!! Error code: %d\n", status);
|
DbgPrint("IO failed!!! Error code: %x\n", status);
|
||||||
ExFreePool(mbr);
|
ExFreePool(mbr);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
@ -85,5 +85,6 @@ BOOLEAN VFATReadSector(IN PDEVICE_OBJECT pDeviceObject,
|
||||||
|
|
||||||
ExFreePool(mbr);
|
ExFreePool(mbr);
|
||||||
DPRINT("Block request succeeded\n");
|
DPRINT("Block request succeeded\n");
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue