Author: fireball
Date: Wed Jul 4 21:20:06 2007
New Revision: 27392
URL:
http://svn.reactos.org/svn/reactos?rev=27392&view=rev
Log:
- IntCallWindowsProc(): DPRINT1 -> DPRINT, it seems it's allright if it's
called with WndProc == NULL.
Modified:
trunk/reactos/dll/win32/user32/windows/message.c
Modified: trunk/reactos/dll/win32/user32/windows/message.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/m…
==============================================================================
--- trunk/reactos/dll/win32/user32/windows/message.c (original)
+++ trunk/reactos/dll/win32/user32/windows/message.c Wed Jul 4 21:20:06 2007
@@ -1185,7 +1185,7 @@
if (WndProc == NULL)
{
- DPRINT1("IntCallWindowsProcA() called with WndProc = NULL!\n");
+ DPRINT("IntCallWindowsProcA() called with WndProc = NULL!\n");
return FALSE;
}