[NTOS:IO] Fix indentation. No code changes!

This commit is contained in:
Eric Kohl 2020-03-01 23:34:30 +01:00
parent 9a07cde37f
commit 7a7212f984

View file

@ -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);