mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +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,
|
||||
&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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue