Author: dgorbachev
Date: Sun Jun 17 19:18:06 2007
New Revision: 27215
URL:
http://svn.reactos.org/svn/reactos?rev=27215&view=rev
Log:
Activate debug message about misbehaving "userinit.exe"
Modified:
trunk/reactos/ntoskrnl/ob/obref.c
Modified: trunk/reactos/ntoskrnl/ob/obref.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ob/obref.c?rev=27…
==============================================================================
--- trunk/reactos/ntoskrnl/ob/obref.c (original)
+++ trunk/reactos/ntoskrnl/ob/obref.c Sun Jun 17 19:18:06 2007
@@ -290,7 +290,7 @@
if (Header->PointerCount < Header->HandleCount)
{
- DPRINT("Misbehaving object: %wZ\n", &Header->Type->Name);
+ DPRINT1("Misbehaving object: %wZ\n", &Header->Type->Name);
return Header->PointerCount;
}
@@ -301,7 +301,7 @@
/* Sanity check */
if (Header->HandleCount)
{
- DPRINT("Misbehaving object: %wZ\n",
&Header->Type->Name);
+ DPRINT1("Misbehaving object: %wZ\n",
&Header->Type->Name);
return Header->PointerCount;
}