summaryrefslogtreecommitdiff
path: root/cmd/proc_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/proc_windows.go')
-rw-r--r--cmd/proc_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/proc_windows.go b/cmd/proc_windows.go
index d333948..dd45234 100644
--- a/cmd/proc_windows.go
+++ b/cmd/proc_windows.go
@@ -23,7 +23,7 @@ import (
)
func gracefullyStopProcess(pid int) error {
- fmt.Printf("Forceful Stop...")
+ fmt.Printf("Forceful Stop...\n")
// process on windows will not stop unless forced with /f
cmd := exec.Command("taskkill", "/pid", strconv.Itoa(pid), "/f")
if err := cmd.Run(); err != nil {