summaryrefslogtreecommitdiff
path: root/src/posixos.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2022-09-08 00:30:06 -0400
committerPaul Smith <psmith@gnu.org>2022-09-08 03:04:15 -0400
commit1fc13bf576b82d5e5b64ba94e6306360b340ec4b (patch)
treee2ea3e2156400a690da673c73560c5968d606e90 /src/posixos.c
parent896908180e7948cc1649982b24b64752a9c58daa (diff)
downloadmake-git-1fc13bf576b82d5e5b64ba94e6306360b340ec4b.tar.gz
Ensure debug output ends in newline
* src/load.c (load_object): Debug output strings must include \n. * src/variable.c (target_environment): Ditto. * src/posixos.c: Remove extra newlines.
Diffstat (limited to 'src/posixos.c')
-rw-r--r--src/posixos.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/posixos.c b/src/posixos.c
index 3538a6b8..8693b74e 100644
--- a/src/posixos.c
+++ b/src/posixos.c
@@ -163,8 +163,7 @@ jobserver_setup (int slots, const char *style)
OSS (fatal, NILF, _("Cannot open jobserver %s: %s"),
fifo_name, strerror (errno));
- DB (DB_JOBS,
- (_("Jobserver setup (fifo %s)\n"), fifo_name));
+ DB (DB_JOBS, (_("Jobserver setup (fifo %s)\n"), fifo_name));
js_type = js_fifo;
}
@@ -180,8 +179,8 @@ jobserver_setup (int slots, const char *style)
if (r < 0)
pfatal_with_name (_("creating jobs pipe"));
- DB (DB_JOBS,
- (_("Jobserver setup (fds %d,%d)\n"), job_fds[0], job_fds[1]));
+ DB (DB_JOBS, (_("Jobserver setup (fds %d,%d)\n"),
+ job_fds[0], job_fds[1]));
js_type = js_pipe;
}
@@ -234,8 +233,7 @@ jobserver_parse_auth (const char *auth)
/* If not, it must be a simple pipe. */
else if (sscanf (auth, "%d,%d", &rfd, &wfd) == 2)
{
- DB (DB_JOBS,
- (_("Jobserver client (fds %d,%d)\n"), rfd, wfd));
+ DB (DB_JOBS, (_("Jobserver client (fds %d,%d)\n"), rfd, wfd));
/* The parent overrode our FDs because we aren't a recursive make. */
if (rfd == -2 || wfd == -2)