From 359a5de1ec00cef9ecf9ef08ac942f65984952ce Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 16 Jul 2006 20:05:18 +0000 Subject: [PATCH] Slightly improve debug prints in IoInvalidateDeviceRelations() svn path=/trunk/; revision=23089 --- reactos/ntoskrnl/io/pnpmgr/pnpmgr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c index 01d24174540..80975a51caf 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c @@ -2314,7 +2314,7 @@ IopInvalidateDeviceRelations(IN PDEVICE_NODE DeviceNode, NTSTATUS Status; ULONG i; - DPRINT("DeviceNode 0x%p\n", DeviceNode); + DPRINT("DeviceNode 0x%p, Type %d\n", DeviceNode, Type); DPRINT("Sending IRP_MN_QUERY_DEVICE_RELATIONS to device stack\n"); @@ -2443,6 +2443,7 @@ IopInvalidateDeviceRelations(IN PDEVICE_NODE DeviceNode, return Status; } + DPRINT("IopInvalidateDeviceRelations() finished\n"); return STATUS_SUCCESS; }