aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/errors.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/services/errors.go b/services/errors.go
index 569585a5..674c083b 100644
--- a/services/errors.go
+++ b/services/errors.go
@@ -7,7 +7,6 @@ package services
import (
"fmt"
- "syscall"
"golang.org/x/sys/windows"
)
@@ -73,7 +72,7 @@ func (e Error) Error() string {
}
func DetermineErrorCode(err error, serviceError Error) (bool, uint32) {
- if syserr, ok := err.(syscall.Errno); ok {
+ if syserr, ok := err.(windows.Errno); ok {
return false, uint32(syserr)
} else if serviceError != ErrorSuccess {
return true, uint32(serviceError)