Skip to content

Commit 15567a6

Browse files
committed
remove "os" import
os.Getppid() is an alias for syscall.Getppid(), which was already imported, so use it directly instead of the alias. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 109353e commit 15567a6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

trap_windows.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package mousetrap
22

33
import (
4-
"os"
54
"syscall"
65
"unsafe"
76
)
@@ -35,7 +34,7 @@ func getProcessEntry(pid int) (*syscall.ProcessEntry32, error) {
3534
// It does not guarantee that the program was run from a terminal. It only can tell you
3635
// whether it was launched from explorer.exe
3736
func StartedByExplorer() bool {
38-
pe, err := getProcessEntry(os.Getppid())
37+
pe, err := getProcessEntry(syscall.Getppid())
3938
if err != nil {
4039
return false
4140
}

0 commit comments

Comments
 (0)