From b4454dfd761473c6ee66f49722b8113c7c3cd335 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Tue, 15 Nov 2005 23:07:04 +0000 Subject: [PATCH] Fix "Devices Parameters" subkey creation in a call to IoOpenDeviceRegistryKey() svn path=/trunk/; revision=19258 --- reactos/ntoskrnl/io/pnpmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr.c index 7b9d8fc00a5..7feb2d61810 100644 --- a/reactos/ntoskrnl/io/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr.c @@ -437,7 +437,7 @@ IoOpenDeviceRegistryKey( L"Hardware Profiles\\Current\\System\\CurrentControlSet\\"; static WCHAR ClassKeyName[] = L"Control\\Class\\"; static WCHAR EnumKeyName[] = L"Enum\\"; - static WCHAR DeviceParametersKeyName[] = L"Device Parameters\\"; + static WCHAR DeviceParametersKeyName[] = L"Device Parameters"; ULONG KeyNameLength; LPWSTR KeyNameBuffer; UNICODE_STRING KeyName;