user32: Avoid using long.

This commit is contained in:
Michael Stefaniuc 2010-05-21 12:12:47 +02:00 committed by Alexandre Julliard
parent 11b8c425e9
commit bf7241c125
1 changed files with 1 additions and 1 deletions

View File

@ -1374,7 +1374,7 @@ UINT WINAPI GetDlgItemInt( HWND hwnd, INT id, BOOL *translated,
{
char str[30];
char * endptr;
long result = 0;
LONG_PTR result = 0;
if (translated) *translated = FALSE;
if (!SendDlgItemMessageA(hwnd, id, WM_GETTEXT, sizeof(str), (LPARAM)str))