mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTOS:IO] Fix indentation. No code changes!
This commit is contained in:
parent
9a07cde37f
commit
7a7212f984
1 changed files with 425 additions and 423 deletions
|
@ -3092,7 +3092,8 @@ IopActionInitChildServices(PDEVICE_NODE DeviceNode,
|
|||
/* Initialize the driver */
|
||||
Status = IopInitializeDriverModule(DeviceNode, ModuleObject,
|
||||
&DeviceNode->ServiceName, FALSE, &DriverObject);
|
||||
if (!NT_SUCCESS(Status)) DeviceNode->Problem = CM_PROB_FAILED_DRIVER_ENTRY;
|
||||
if (!NT_SUCCESS(Status))
|
||||
DeviceNode->Problem = CM_PROB_FAILED_DRIVER_ENTRY;
|
||||
}
|
||||
else if (Status == STATUS_DRIVER_UNABLE_TO_LOAD)
|
||||
{
|
||||
|
@ -3103,7 +3104,8 @@ IopActionInitChildServices(PDEVICE_NODE DeviceNode,
|
|||
{
|
||||
DPRINT("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
|
||||
&DeviceNode->ServiceName, Status);
|
||||
if (!BootDrivers) DeviceNode->Problem = CM_PROB_DRIVER_FAILED_LOAD;
|
||||
if (!BootDrivers)
|
||||
DeviceNode->Problem = CM_PROB_DRIVER_FAILED_LOAD;
|
||||
}
|
||||
}
|
||||
ExReleaseResourceLite(&IopDriverLoadResource);
|
||||
|
|
Loading…
Reference in a new issue