Add missing newline to "Forking into the background" display.
[srvx.git] / 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();