Skip to content

Commit 87c1a78

Browse files
committed
[NTOSKRNL]
- Silence a warning - Unsilence 2 warnings svn path=/trunk/; revision=55766
1 parent 2494d91 commit 87c1a78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

reactos/ntoskrnl/io/iomgr/driver.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1917,7 +1917,7 @@ IopLoadUnloadDriver(PLOAD_UNLOAD_PARAMS LoadParams)
19171917

19181918
if (!NT_SUCCESS(Status))
19191919
{
1920-
DPRINT("IopCreateDeviceNode() failed (Status %lx)\n", Status);
1920+
DPRINT1("IopCreateDeviceNode() failed (Status %lx)\n", Status);
19211921
MmUnloadSystemImage(ModuleObject);
19221922
LoadParams->Status = Status;
19231923
(VOID)KeSetEvent(&LoadParams->Event, 0, FALSE);
@@ -1936,7 +1936,7 @@ IopLoadUnloadDriver(PLOAD_UNLOAD_PARAMS LoadParams)
19361936

19371937
if (!NT_SUCCESS(Status))
19381938
{
1939-
DPRINT("IopInitializeDriver() failed (Status %lx)\n", Status);
1939+
DPRINT1("IopInitializeDriver() failed (Status %lx)\n", Status);
19401940
MmUnloadSystemImage(ModuleObject);
19411941
IopFreeDeviceNode(DeviceNode);
19421942
LoadParams->Status = Status;

reactos/ntoskrnl/io/pnpmgr/pnpmgr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2601,7 +2601,7 @@ IopActionInitChildServices(PDEVICE_NODE DeviceNode,
26012601
}
26022602
else
26032603
{
2604-
DPRINT1("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
2604+
DPRINT("IopLoadServiceModule(%wZ) failed with status 0x%08x\n",
26052605
&DeviceNode->ServiceName, Status);
26062606
}
26072607
}

0 commit comments

Comments
 (0)