user32: Avoid using long.
This commit is contained in:
parent
11b8c425e9
commit
bf7241c125
|
@ -1374,7 +1374,7 @@ UINT WINAPI GetDlgItemInt( HWND hwnd, INT id, BOOL *translated,
|
||||||
{
|
{
|
||||||
char str[30];
|
char str[30];
|
||||||
char * endptr;
|
char * endptr;
|
||||||
long result = 0;
|
LONG_PTR result = 0;
|
||||||
|
|
||||||
if (translated) *translated = FALSE;
|
if (translated) *translated = FALSE;
|
||||||
if (!SendDlgItemMessageA(hwnd, id, WM_GETTEXT, sizeof(str), (LPARAM)str))
|
if (!SendDlgItemMessageA(hwnd, id, WM_GETTEXT, sizeof(str), (LPARAM)str))
|
||||||
|
|
Loading…
Reference in New Issue