From: Paul Smith Date: Sat, 4 Aug 2018 23:05:29 +0000 (-0400) Subject: * src/job.c (reap_children): Fix inverted win/lose message. X-Git-Tag: 4.2.90~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2234bc1abe13bf3e3c4eb003b19e4d3cce188f3;p=thirdparty%2Fmake.git * src/job.c (reap_children): Fix inverted win/lose message. --- diff --git a/src/job.c b/src/job.c index afe742e2..3ee968f7 100644 --- a/src/job.c +++ b/src/job.c @@ -896,8 +896,8 @@ reap_children (int block, int err) continue; DB (DB_JOBS, (exit_sig == 0 && exit_code == 0 - ? _("Reaping losing child %p PID %s %s\n") - : _("Reaping winning child %p PID %s %s\n"), + ? _("Reaping winning child %p PID %s %s\n") + : _("Reaping losing child %p PID %s %s\n"), c, pid2str (c->pid), c->remote ? _(" (remote)") : "")); /* If we have started jobs in this second, remove one. */