mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Fix incompatible pointer type warning
svn path=/trunk/; revision=27964
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user