mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[NTOSKRNL]
- Silence a warning - Unsilence 2 warnings svn path=/trunk/; revision=55766
This commit is contained in:
parent
2494d9170c
commit
87c1a78ebb
2 changed files with 3 additions and 3 deletions
|
@ -1917,7 +1917,7 @@ IopLoadUnloadDriver(PLOAD_UNLOAD_PARAMS LoadParams)
|
|||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT("IopCreateDeviceNode() failed (Status %lx)\n", Status);
|
||||
DPRINT1("IopCreateDeviceNode() failed (Status %lx)\n", Status);
|
||||
MmUnloadSystemImage(ModuleObject);
|
||||
LoadParams->Status = Status;
|
||||
(VOID)KeSetEvent(&LoadParams->Event, 0, FALSE);
|
||||
|
@ -1936,7 +1936,7 @@ IopLoadUnloadDriver(PLOAD_UNLOAD_PARAMS LoadParams)
|
|||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT("IopInitializeDriver() failed (Status %lx)\n", Status);
|
||||
DPRINT1("IopInitializeDriver() failed (Status %lx)\n", Status);
|
||||
MmUnloadSystemImage(ModuleObject);
|
||||
IopFreeDeviceNode(DeviceNode);
|
||||
LoadParams->Status = Status;
|
||||
|
|
|
@ -2601,7 +2601,7 @@ IopActionInitChildServices(PDEVICE_NODE DeviceNode,
|
|||
}
|
||||
else
|
||||
{
|
||||
DPRINT1("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
|
||||
DPRINT("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
|
||||
&DeviceNode->ServiceName, Status);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue