mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
Add type casts to RtlpCallQueryRegistryRoutine().
svn path=/trunk/; revision=38564
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user