mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:45:46 +00:00
[NTOSKRNL]
- Fix the type passed to ZwSetValueKey svn path=/trunk/; revision=46712
This commit is contained in:
parent
38bae887c2
commit
141ca81c82
1 changed files with 1 additions and 1 deletions
|
@ -3316,7 +3316,7 @@ IopEnumerateDetectedDevices(
|
|||
BootResourcesLength);
|
||||
|
||||
/* Save boot resources to 'LogConf\BootConfig' */
|
||||
Status = ZwSetValueKey(hLogConf, &BootConfigU, 0, REG_FULL_RESOURCE_DESCRIPTOR, CmResourceList, BootResourcesLength + sizeof(ULONG));
|
||||
Status = ZwSetValueKey(hLogConf, &BootConfigU, 0, REG_RESOURCE_LIST, CmResourceList, BootResourcesLength + sizeof(ULONG));
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT("ZwSetValueKey() failed with status 0x%08lx\n", Status);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue