diff options
author | B. Watson <urchlay@slackware.uk> | 2025-05-09 07:21:32 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-05-09 07:21:32 -0400 |
commit | e9a2357aa6013c626dfa097b2df3b644e246bdec (patch) | |
tree | 2ba3d315e55a429107f6ef1f0efef65db71bb552 /marsond.c | |
parent | 6945d551317f9edcb106cfa528cf08499b7a636d (diff) | |
download | marsond-e9a2357aa6013c626dfa097b2df3b644e246bdec.tar.gz |
remove stray newline in PID message.
Diffstat (limited to 'marsond.c')
-rw-r--r-- | marsond.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |