Author: tkreuzer Date: Thu May 1 08:57:11 2014 New Revision: 63089
URL: http://svn.reactos.org/svn/reactos?rev=63089&view=rev Log: [WIN32K] Fix DPRINT, noticed by Thomas
Modified: trunk/reactos/win32ss/gdi/eng/engmisc.c
Modified: trunk/reactos/win32ss/gdi/eng/engmisc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/eng/engmisc.c?r... ============================================================================== --- trunk/reactos/win32ss/gdi/eng/engmisc.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/gdi/eng/engmisc.c [iso-8859-1] Thu May 1 08:57:11 2014 @@ -256,7 +256,7 @@ NULL); if (!NT_SUCCESS(status)) { - DPRINT1("Failed to query basic information: 0x%ls\n", status); + DPRINT1("Failed to query basic information: 0x%lx\n", status); return FALSE; }
@@ -270,7 +270,7 @@ NULL); if (!NT_SUCCESS(status)) { - DPRINT1("Failed to query processor information: 0x%ls\n", status); + DPRINT1("Failed to query processor information: 0x%lx\n", status); return FALSE; } *pCapability = spi.ProcessorFeatureBits;