diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2023-07-08 18:42:28 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2023-07-08 18:42:28 +0000 |
commit | a00fb9412324946b0bbf2b63ac46f55f062247e2 (patch) | |
tree | aa6048dbb50da175f4d119eeabb1f5e1a8380a50 /usr.bin/make | |
parent | 3a630033f75e9343975887fe8783b51493c8783b (diff) |
nitpicking: singular of children is child
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/make.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c index 11e566c2eff..bf3443346b3 100644 --- a/usr.bin/make/make.c +++ b/usr.bin/make/make.c @@ -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 @@ add_targets_to_make(Lst todo) 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 { |