projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73be4ca
)
[NTOSKRNL]
author
Eric Kohl
<eric.kohl@reactos.org>
Tue, 10 May 2011 12:31:11 +0000
(12:31 +0000)
committer
Eric Kohl
<eric.kohl@reactos.org>
Tue, 10 May 2011 12:31:11 +0000
(12:31 +0000)
Fix two typos, one spotted by Gabriel Ilardi and the other one spotted by me.
svn path=/trunk/; revision=51663
reactos/ntoskrnl/config/cmsysini.c
patch
|
blob
|
history
diff --git
a/reactos/ntoskrnl/config/cmsysini.c
b/reactos/ntoskrnl/config/cmsysini.c
index
1d22e87
..
f6b3142
100644
(file)
--- a/
reactos/ntoskrnl/config/cmsysini.c
+++ b/
reactos/ntoskrnl/config/cmsysini.c
@@
-1957,7
+1957,7
@@
CmpSetVersionData(VOID)
InitializeObjectAttributes(&ObjectAttributes,
&KeyName,
OBJ_CASE_INSENSITIVE,
-
0
,
+
NULL
,
NULL);
Status = NtCreateKey(&KeyHandle,
@@
-1969,7
+1969,7
@@
CmpSetVersionData(VOID)
NULL);
if (!NT_SUCCESS(Status))
{
- DPRINT1("Failed to create key
&
wZ (Status: %08lx)\n", &KeyName, Status);
+ DPRINT1("Failed to create key
%
wZ (Status: %08lx)\n", &KeyName, Status);
return;
}