mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:45:44 +00:00
Fix incompatible pointer type warning
svn path=/trunk/; revision=27964
This commit is contained in:
parent
87388c9075
commit
25ff32dbf6
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ SetDefaultLanguage(
|
|||
/* Convert Value to a Lcid */
|
||||
ValueString.Length = ValueString.MaximumLength = (USHORT)dwSize;
|
||||
ValueString.Buffer = Value;
|
||||
Status = RtlUnicodeStringToInteger(&ValueString, 16, &Lcid);
|
||||
Status = RtlUnicodeStringToInteger(&ValueString, 16, (PULONG)&Lcid);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
TRACE("RtlUnicodeStringToInteger() failed with status 0x%08lx\n", Status);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue