mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 23:13:04 +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 */
|
/* Convert Value to a Lcid */
|
||||||
ValueString.Length = ValueString.MaximumLength = (USHORT)dwSize;
|
ValueString.Length = ValueString.MaximumLength = (USHORT)dwSize;
|
||||||
ValueString.Buffer = Value;
|
ValueString.Buffer = Value;
|
||||||
Status = RtlUnicodeStringToInteger(&ValueString, 16, &Lcid);
|
Status = RtlUnicodeStringToInteger(&ValueString, 16, (PULONG)&Lcid);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
TRACE("RtlUnicodeStringToInteger() failed with status 0x%08lx\n", Status);
|
TRACE("RtlUnicodeStringToInteger() failed with status 0x%08lx\n", Status);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue