diff options
Diffstat (limited to 'vendor/github.com')
-rw-r--r-- | vendor/github.com/AllenDang/w32/user32.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/AllenDang/w32/user32.go b/vendor/github.com/AllenDang/w32/user32.go index 1d1a0ab..8286e89 100644 --- a/vendor/github.com/AllenDang/w32/user32.go +++ b/vendor/github.com/AllenDang/w32/user32.go @@ -1037,7 +1037,7 @@ func RedrawWindow(hWnd HWND, lpRect *RECT, hrgnUpdate HRGN, flag uint32) { uintptr(hWnd), uintptr(unsafe.Pointer(lpRect)), uintptr(hrgnUpdate), - flag, + uintptr(flag), ) if ret!=0{ panic("RedrawWindow fail") |