aboutsummaryrefslogtreecommitdiff
path: root/marsond.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-05-09 07:21:32 -0400
committerB. Watson <urchlay@slackware.uk>2025-05-09 07:21:32 -0400
commite9a2357aa6013c626dfa097b2df3b644e246bdec (patch)
tree2ba3d315e55a429107f6ef1f0efef65db71bb552 /marsond.c
parent6945d551317f9edcb106cfa528cf08499b7a636d (diff)
downloadmarsond-e9a2357aa6013c626dfa097b2df3b644e246bdec.tar.gz
remove stray newline in PID message.
Diffstat (limited to 'marsond.c')
-rw-r--r--marsond.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/marsond.c b/marsond.c
index f438aa0..90d9152 100644
--- a/marsond.c
+++ b/marsond.c
@@ -239,7 +239,7 @@ void daemonize(void) {
die("fork() failed");
} else if(pid) {
/* 2nd generation parent */
- info("forked to background, PID %d\n", pid);
+ info("forked to background, PID %d", pid);
exit(0);
}