mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:12:58 +00:00
[USER32] Fix 64 bit issues
This commit is contained in:
parent
7ad5f405cb
commit
e9ad66d52f
6 changed files with 7 additions and 7 deletions
|
@ -574,7 +574,7 @@ User32CallGetCharsetInfo(PVOID Arguments, ULONG ArgumentLength)
|
|||
|
||||
TRACE("GetCharsetInfo\n");
|
||||
|
||||
Ret = TranslateCharsetInfo((DWORD *)pgci->Locale, &pgci->Cs, TCI_SRCLOCALE);
|
||||
Ret = TranslateCharsetInfo((DWORD *)(ULONG_PTR)pgci->Locale, &pgci->Cs, TCI_SRCLOCALE);
|
||||
|
||||
return ZwCallbackReturn(Arguments, ArgumentLength, Ret ? STATUS_SUCCESS : STATUS_UNSUCCESSFUL);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue