mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[NTOSKRNL]
Fix two typos, one spotted by Gabriel Ilardi and the other one spotted by me. svn path=/trunk/; revision=51663
This commit is contained in:
parent
73be4ca375
commit
1335fefcd9
1 changed files with 2 additions and 2 deletions
|
@ -1957,7 +1957,7 @@ CmpSetVersionData(VOID)
|
||||||
InitializeObjectAttributes(&ObjectAttributes,
|
InitializeObjectAttributes(&ObjectAttributes,
|
||||||
&KeyName,
|
&KeyName,
|
||||||
OBJ_CASE_INSENSITIVE,
|
OBJ_CASE_INSENSITIVE,
|
||||||
0,
|
NULL,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
Status = NtCreateKey(&KeyHandle,
|
Status = NtCreateKey(&KeyHandle,
|
||||||
|
@ -1969,7 +1969,7 @@ CmpSetVersionData(VOID)
|
||||||
NULL);
|
NULL);
|
||||||
if (!NT_SUCCESS(Status))
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue