Commit 9eaefced authored by Lawson Whitney's avatar Lawson Whitney Committed by Alexandre Julliard

Cast id to unsigned in GetDlgItem16.

parent d13e6a9a
......@@ -440,7 +440,7 @@ BOOL16 WINAPI EndDialog16( HWND16 hwnd, INT16 retval )
*/
HWND16 WINAPI GetDlgItem16( HWND16 hwndDlg, INT16 id )
{
return WIN_Handle16( GetDlgItem( WIN_Handle32(hwndDlg), id ));
return WIN_Handle16( GetDlgItem( WIN_Handle32(hwndDlg), (UINT16) id ));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment