From 93d8fa4c89a2618a7a8af9973a4c031e1e90d8b1 Mon Sep 17 00:00:00 2001 From: espie Date: Sat, 8 Jul 2023 18:42:27 +0000 Subject: [PATCH] nitpicking: singular of children is child --- usr.bin/make/make.c | 7 ++++--- 1 file 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 { -- 2.20.1