]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* src/job.c (reap_children): Fix inverted win/lose message.
authorPaul Smith <psmith@gnu.org>
Sat, 4 Aug 2018 23:05:29 +0000 (19:05 -0400)
committerPaul Smith <psmith@gnu.org>
Sat, 4 Aug 2018 23:05:29 +0000 (19:05 -0400)
src/job.c

index afe742e26f1b74be0cffadaccae8e1a714c4a717..3ee968f7a5267fe97444d10113d10c45d925cf41 100644 (file)
--- 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.  */