Do not mix ReactOS and Wine debug style

svn path=/trunk/; revision=29818
This commit is contained in:
Hervé Poussineau 2007-10-23 08:27:48 +00:00
parent 195f28c5df
commit a8f4976951

View file

@ -16,8 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id$ /*
*
* PROJECT: ReactOS user32.dll * PROJECT: ReactOS user32.dll
* FILE: lib/user32/misc/misc.c * FILE: lib/user32/misc/misc.c
* PURPOSE: Misc * PURPOSE: Misc
@ -32,6 +31,8 @@
#include <wine/debug.h> #include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(user32);
/* FUNCTIONS *****************************************************************/ /* FUNCTIONS *****************************************************************/
/* /*
@ -316,7 +317,7 @@ GetUser32Handle(HANDLE handle)
PUSER_HANDLE_TABLE ht = gHandleTable; PUSER_HANDLE_TABLE ht = gHandleTable;
USHORT generation; USHORT generation;
DPRINT1("Main Handle Table %x\n", ht); TRACE("Main Handle Table %x\n", ht);
INT Index = (((UINT)handle & 0xffff) - FIRST_USER_HANDLE) >> 1; INT Index = (((UINT)handle & 0xffff) - FIRST_USER_HANDLE) >> 1;