summaryrefslogtreecommitdiff
path: root/cmd/proc_posix.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/proc_posix.go')
-rw-r--r--cmd/proc_posix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/proc_posix.go b/cmd/proc_posix.go
index 7a53193..199c614 100644
--- a/cmd/proc_posix.go
+++ b/cmd/proc_posix.go
@@ -24,7 +24,7 @@ import (
)
func gracefullyStopProcess(pid int) error {
- fmt.Printf("Graceful stop...")
+ fmt.Printf("Graceful stop...\n")
err := syscall.Kill(pid, syscall.SIGINT)
if err != nil {
return fmt.Errorf("kill: %v", err)