From 8ab220df7fb2265ce5c7fee6072d1caa0142727d Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 13 Dec 2022 02:38:45 +0900 Subject: [PATCH] internal/ui: bug fix: compile error --- internal/ui/api_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/api_windows.go b/internal/ui/api_windows.go index 6a621ed7f..7ea00232c 100644 --- a/internal/ui/api_windows.go +++ b/internal/ui/api_windows.go @@ -158,5 +158,5 @@ func (i *_ITaskbarList) DeleteTab(hwnd windows.HWND) error { } func (i *_ITaskbarList) Release() { - _, _, _ := syscall.Syscall(i.vtbl.Release, 1, uintptr(unsafe.Pointer(i)), 0, 0) + _, _, _ = syscall.Syscall(i.vtbl.Release, 1, uintptr(unsafe.Pointer(i)), 0, 0) }