From e9a2357aa6013c626dfa097b2df3b644e246bdec Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 9 May 2025 07:21:32 -0400 Subject: remove stray newline in PID message. --- marsond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.2.3