mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Add type casts to RtlpCallQueryRegistryRoutine().
svn path=/trunk/; revision=38564
This commit is contained in:
parent
fa2d477672
commit
24dceb4922
1 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ RtlpCallQueryRegistryRoutine(IN PRTL_QUERY_REGISTRY_TABLE QueryTable,
|
|||
}
|
||||
|
||||
/* We can setup a default value... capture the defaults */
|
||||
Name = QueryTable->Name;
|
||||
Name = (PWCHAR)QueryTable->Name;
|
||||
Type = QueryTable->DefaultType;
|
||||
Data = QueryTable->DefaultData;
|
||||
Length = QueryTable->DefaultLength;
|
||||
|
@ -224,7 +224,7 @@ RtlpCallQueryRegistryRoutine(IN PRTL_QUERY_REGISTRY_TABLE QueryTable,
|
|||
else
|
||||
{
|
||||
/* Just return the name */
|
||||
Name = QueryTable->Name;
|
||||
Name = (PWCHAR)QueryTable->Name;
|
||||
}
|
||||
|
||||
/* Capture key data */
|
||||
|
|
Loading…
Reference in a new issue