From 48bbb0b8054c4701408261d2bc7e7ed442af0187 Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Tue, 20 Oct 2020 07:53:23 -0400 Subject: [PATCH] Add a missing newline to an error message. I'm almost certain I remember adding this before, but I guess it somehow got lost. --- src/ndhc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ndhc.c b/src/ndhc.c index be77913..73dab98 100644 --- a/src/ndhc.c +++ b/src/ndhc.c @@ -175,7 +175,7 @@ static void signal_handler(int signo) { switch (signo) { case SIGCHLD: { - static const char errstr[] = "ndhc-master: Subprocess terminated unexpectedly. Exiting."; + static const char errstr[] = "ndhc-master: Subprocess terminated unexpectedly. Exiting.\n"; safe_write(STDOUT_FILENO, errstr, sizeof errstr - 1); exit(EXIT_FAILURE); }