From 1335fefcd97790f5c218505b5dcfb178d2d2aa84 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Tue, 10 May 2011 12:31:11 +0000 Subject: [PATCH] [NTOSKRNL] 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/config/cmsysini.c b/reactos/ntoskrnl/config/cmsysini.c index 1d22e87ce4c..f6b3142a68b 100644 --- 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; }