Skip to content

Commit

Permalink
change SIGKILL to sig
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Nov 13, 2012
1 parent 0419211 commit 426f41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mon.c
Expand Up @@ -91,7 +91,7 @@ graceful_exit(int sig) {
pid_t pid = getpid();
log("shutting down");
log("kill(-%d, %d)", pid, sig);
kill(-pid, SIGKILL);
kill(-pid, sig);
log("bye :)");
exit(0);
}
Expand Down

0 comments on commit 426f41e

Please sign in to comment.