From 221d0414f44e315291170a3a35ce260ceefa086d Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Sat, 31 Mar 2007 12:09:03 -0400 Subject: [PATCH] Add missing newline to "Forking into the background" display. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 6966853..eaa284d 100644 --- a/src/main.c +++ b/src/main.c @@ -250,7 +250,7 @@ int main(int argc, char *argv[]) if (pid < 0) { fprintf(stderr, "Unable to fork: %s\n", strerror(errno)); } else if (pid > 0) { - fprintf(stdout, "Forking into the background (pid: %d)...", pid); + fprintf(stdout, "Forking into the background (pid: %d)...\n", pid); exit(0); } setsid(); -- 2.20.1