commit | 61d92562b9582791707d389b9d82df61644580df | [log] [tgz] |
---|---|---|
author | Michael Stefaniuc <mstefani@redhat.de> | Sat Oct 19 00:52:55 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Oct 19 00:52:55 2002 +0000 |
tree | c86469d50d0d06897183a5199a2c15a45d2e17b1 | |
parent | bd6590a86bac1c8ee4be4eb8d7c23e54a2716bf0 [diff] [blame] |
Silence some warnings due to casts between pointer and integers of different size.
diff --git a/windows/win.c b/windows/win.c index 19dc0e6..596449d 100644 --- a/windows/win.c +++ b/windows/win.c
@@ -3084,7 +3084,7 @@ { HDC hDC = GetDC(hWnd); - if (!SendMessageW( hWnd, WM_ERASEBKGND, (WPARAM16)hDC, 0 )) + if (!SendMessageW( hWnd, WM_ERASEBKGND, (WPARAM)hDC, 0 )) wndPtr->flags |= WIN_NEEDS_ERASEBKGND; ReleaseDC( hWnd, hDC );