summaryrefslogtreecommitdiff
path: root/comctl_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'comctl_windows.go')
-rw-r--r--comctl_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/comctl_windows.go b/comctl_windows.go
index a52e19c..1d0e221 100644
--- a/comctl_windows.go
+++ b/comctl_windows.go
@@ -115,7 +115,7 @@ func initCommonControls() (err error) {
comctl32 = syscall.NewLazyDLL("comctl32.dll")
r1, _, err := comctl32.NewProc("InitCommonControlsEx").Call(uintptr(unsafe.Pointer(&icc)))
if r1 == _FALSE { // failure
- return fmt.Errorf("error initializing Common Controls (comctl32.dll); windows last error: %v", err)
+ return fmt.Errorf("error initializing Common Controls (comctl32.dll); Windows last error: %v", err)
}
return nil
}