mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +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)) {
|
||||
DbgPrint("IO failed!!! Error code: %d\n", status);
|
||||
DbgPrint("IO failed!!! Error code: %x\n", status);
|
||||
ExFreePool(mbr);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -85,5 +85,6 @@ BOOLEAN VFATReadSector(IN PDEVICE_OBJECT pDeviceObject,
|
|||
|
||||
ExFreePool(mbr);
|
||||
DPRINT("Block request succeeded\n");
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue