Fix windows linter errors (#355)

This commit is contained in:
Egon Elbre 2018-09-14 20:56:18 +03:00 committed by GitHub
parent 0141c862f3
commit f6c48dcb60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,6 @@ func forcekill(pid int) {
return
}
syscall.TerminateProcess(handle, 0)
syscall.CloseHandle(handle)
_ = syscall.TerminateProcess(handle, 0)
_ = syscall.CloseHandle(handle)
}