mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:56:00 +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 */
|
/* We can setup a default value... capture the defaults */
|
||||||
Name = QueryTable->Name;
|
Name = (PWCHAR)QueryTable->Name;
|
||||||
Type = QueryTable->DefaultType;
|
Type = QueryTable->DefaultType;
|
||||||
Data = QueryTable->DefaultData;
|
Data = QueryTable->DefaultData;
|
||||||
Length = QueryTable->DefaultLength;
|
Length = QueryTable->DefaultLength;
|
||||||
|
@ -224,7 +224,7 @@ RtlpCallQueryRegistryRoutine(IN PRTL_QUERY_REGISTRY_TABLE QueryTable,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Just return the name */
|
/* Just return the name */
|
||||||
Name = QueryTable->Name;
|
Name = (PWCHAR)QueryTable->Name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Capture key data */
|
/* Capture key data */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue