mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-26 14:00:55 +00:00
* src/job.c (reap_children): Fix inverted win/lose message.
This commit is contained in:
parent
f9ba22e029
commit
e2234bc1ab
1 changed files with 2 additions and 2 deletions
|
@ -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. */
|
||||
|
|
Loading…
Reference in a new issue