diff options
Diffstat (limited to 'cmd/proc_posix.go')
-rw-r--r-- | cmd/proc_posix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/proc_posix.go b/cmd/proc_posix.go index 7a53193d9..199c6144b 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) |