Author: fireball
Date: Sun Oct 26 09:38:50 2008
New Revision: 36989
URL:
http://svn.reactos.org/svn/reactos?rev=36989&view=rev
Log:
- Print out event GUID if it's unknown in umpnpmgr.
- Fix a typo in vdmmain.c.
Modified:
trunk/reactos/base/services/umpnpmgr/umpnpmgr.c
trunk/reactos/ntoskrnl/vdm/vdmmain.c
Modified: trunk/reactos/base/services/umpnpmgr/umpnpmgr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/umpnpmgr/ump…
==============================================================================
--- trunk/reactos/base/services/umpnpmgr/umpnpmgr.c [iso-8859-1] (original)
+++ trunk/reactos/base/services/umpnpmgr/umpnpmgr.c [iso-8859-1] Sun Oct 26 09:38:50 2008
@@ -2193,7 +2193,11 @@
}
else
{
- DPRINT1("Unknown event\n");
+ DPRINT1("Unknown event, GUID
{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}\n",
+ PnpEvent->EventGuid.Data1, PnpEvent->EventGuid.Data2,
PnpEvent->EventGuid.Data3,
+ PnpEvent->EventGuid.Data4[0], PnpEvent->EventGuid.Data4[1],
PnpEvent->EventGuid.Data4[2],
+ PnpEvent->EventGuid.Data4[3], PnpEvent->EventGuid.Data4[4],
PnpEvent->EventGuid.Data4[5],
+ PnpEvent->EventGuid.Data4[6], PnpEvent->EventGuid.Data4[7]);
}
/* Dequeue the current pnp event and signal the next one */
Modified: trunk/reactos/ntoskrnl/vdm/vdmmain.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/vdm/vdmmain.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/vdm/vdmmain.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/vdm/vdmmain.c [iso-8859-1] Sun Oct 26 09:38:50 2008
@@ -120,7 +120,7 @@
return Status;
}
- /* Now, copy the first physical pagee into the first virtual page */
+ /* Now, copy the first physical page into the first virtual page */
_SEH_TRY
{
RtlMoveMemory(NullAddress, BaseAddress, ViewSize);