From: Michael Poole Date: Sat, 31 Mar 2007 16:09:03 +0000 (-0400) Subject: Add missing newline to "Forking into the background" display. X-Git-Tag: v1.4.0-rc1~39 X-Git-Url: http://git.pk910.de/?p=srvx.git;a=commitdiff_plain;h=221d0414f44e315291170a3a35ce260ceefa086d Add missing newline to "Forking into the background" display. --- 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();