Add missing newline to "Forking into the background" display.
authorMichael Poole <mdpoole@troilus.org>
Sat, 31 Mar 2007 16:09:03 +0000 (12:09 -0400)
committerMichael Poole <mdpoole@troilus.org>
Sat, 31 Mar 2007 16:09:03 +0000 (12:09 -0400)
src/main.c

index 6966853e801bbdaec6ebbb6a185c804b3ce85480..eaa284de86f1162bb2644530601e614cea0f3ee2 100644 (file)
@@ -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();