=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/make.c,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- src/usr.bin/make/make.c 2020/01/26 12:41:21 1.82 +++ src/usr.bin/make/make.c 2023/07/08 18:42:27 1.83 @@ -1,4 +1,4 @@ -/* $OpenBSD: make.c,v 1.82 2020/01/26 12:41:21 espie Exp $ */ +/* $OpenBSD: make.c,v 1.83 2023/07/08 18:42:27 espie Exp $ */ /* $NetBSD: make.c,v 1.10 1996/11/06 17:59:15 christos Exp $ */ /* @@ -488,8 +488,9 @@ if (gn->children_left != 0) { if (DEBUG(MAKE)) - printf("%s: not queuing (%d children left to build)\n", - gn->name, gn->children_left); + printf("%s: not queuing (%d child%s left to build)\n", + gn->name, gn->children_left, + gn->children_left > 1 ? "ren" : ""); Lst_ForEach(&gn->children, MakeAddChild, &examine); } else {