Author: cgutman
Date: Thu Aug 18 00:25:38 2011
New Revision: 53291
URL:
http://svn.reactos.org/svn/reactos?rev=53291&view=rev
Log:
[NTOSKRNL]
- Print the status returned when an IRP_MN_START_DEVICE request fails
Modified:
trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c
Modified: trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.…
==============================================================================
--- trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c [iso-8859-1] Thu Aug 18 00:25:38 2011
@@ -311,7 +311,7 @@
/* 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;
}