mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:23:05 +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))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT("IopCreateDeviceNode() failed (Status %lx)\n", Status);
|
DPRINT1("IopCreateDeviceNode() failed (Status %lx)\n", Status);
|
||||||
MmUnloadSystemImage(ModuleObject);
|
MmUnloadSystemImage(ModuleObject);
|
||||||
LoadParams->Status = Status;
|
LoadParams->Status = Status;
|
||||||
(VOID)KeSetEvent(&LoadParams->Event, 0, FALSE);
|
(VOID)KeSetEvent(&LoadParams->Event, 0, FALSE);
|
||||||
|
@ -1936,7 +1936,7 @@ IopLoadUnloadDriver(PLOAD_UNLOAD_PARAMS LoadParams)
|
||||||
|
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT("IopInitializeDriver() failed (Status %lx)\n", Status);
|
DPRINT1("IopInitializeDriver() failed (Status %lx)\n", Status);
|
||||||
MmUnloadSystemImage(ModuleObject);
|
MmUnloadSystemImage(ModuleObject);
|
||||||
IopFreeDeviceNode(DeviceNode);
|
IopFreeDeviceNode(DeviceNode);
|
||||||
LoadParams->Status = Status;
|
LoadParams->Status = Status;
|
||||||
|
|
|
@ -2601,7 +2601,7 @@ IopActionInitChildServices(PDEVICE_NODE DeviceNode,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DPRINT1("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
|
DPRINT("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
|
||||||
&DeviceNode->ServiceName, Status);
|
&DeviceNode->ServiceName, Status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue