projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
305c6b4
)
[WIN32K]
author
Timo Kreuzer
<timo.kreuzer@reactos.org>
Thu, 1 May 2014 08:57:11 +0000
(08:57 +0000)
committer
Timo Kreuzer
<timo.kreuzer@reactos.org>
Thu, 1 May 2014 08:57:11 +0000
(08:57 +0000)
Fix DPRINT, noticed by Thomas
svn path=/trunk/; revision=63089
reactos/win32ss/gdi/eng/engmisc.c
patch
|
blob
|
history
diff --git
a/reactos/win32ss/gdi/eng/engmisc.c
b/reactos/win32ss/gdi/eng/engmisc.c
index
c88a9c5
..
076aead
100644
(file)
--- a/
reactos/win32ss/gdi/eng/engmisc.c
+++ b/
reactos/win32ss/gdi/eng/engmisc.c
@@
-256,7
+256,7
@@
EngQuerySystemAttribute(
NULL);
if (!NT_SUCCESS(status))
{
- DPRINT1("Failed to query basic information: 0x%l
s
\n", status);
+ DPRINT1("Failed to query basic information: 0x%l
x
\n", status);
return FALSE;
}
@@
-270,7
+270,7
@@
EngQuerySystemAttribute(
NULL);
if (!NT_SUCCESS(status))
{
- DPRINT1("Failed to query processor information: 0x%l
s
\n", status);
+ DPRINT1("Failed to query processor information: 0x%l
x
\n", status);
return FALSE;
}
*pCapability = spi.ProcessorFeatureBits;