[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:
Eric Kohl 2011-05-10 12:31:11 +00:00
parent 73be4ca375
commit 1335fefcd9

View file

@ -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;
}