From 14345748e534b3a398a1e529210e852c644d6d3e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 18 Aug 2011 00:25:38 +0000 Subject: [PATCH] [NTOSKRNL] - Print the status returned when an IRP_MN_START_DEVICE request fails svn path=/trunk/; revision=53291 --- reactos/ntoskrnl/io/pnpmgr/pnpmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c index f3f0ce0d3f2..11b27b6cd9f 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c @@ -311,7 +311,7 @@ IopStartDevice2(IN PDEVICE_OBJECT DeviceObject) /* Set the appropriate flag */ DeviceNode->Flags |= DNF_START_FAILED; - DPRINT1("Warning: PnP Start failed (%wZ)\n", &DeviceNode->InstancePath); + DPRINT1("Warning: PnP Start failed (%wZ) [Status: 0x%x]\n", &DeviceNode->InstancePath, Status); return; }