Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make: remove unused return type of MakeBuildParent



details:   https://anonhg.NetBSD.org/src/rev/3feca321aaae
branches:  trunk
changeset: 959136:3feca321aaae
user:      rillig <rillig%NetBSD.org@localhost>
date:      Mon Feb 01 20:42:13 2021 +0000

description:
make: remove unused return type of MakeBuildParent

diffstat:

 usr.bin/make/make.c |  15 ++++++---------
 1 files changed, 6 insertions(+), 9 deletions(-)

diffs (58 lines):

diff -r 9fe66c88b9b8 -r 3feca321aaae usr.bin/make/make.c
--- a/usr.bin/make/make.c       Mon Feb 01 20:40:02 2021 +0000
+++ b/usr.bin/make/make.c       Mon Feb 01 20:42:13 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.c,v 1.237 2021/02/01 20:40:02 rillig Exp $        */
+/*     $NetBSD: make.c,v 1.238 2021/02/01 20:42:13 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -103,7 +103,7 @@
 #include "job.h"
 
 /*     "@(#)make.c     8.1 (Berkeley) 6/6/93"  */
-MAKE_RCSID("$NetBSD: make.c,v 1.237 2021/02/01 20:40:02 rillig Exp $");
+MAKE_RCSID("$NetBSD: make.c,v 1.238 2021/02/01 20:42:13 rillig Exp $");
 
 /* Sequence # to detect recursion. */
 static unsigned int checked_seqno = 1;
@@ -599,7 +599,7 @@
        return FALSE;
 }
 
-static int MakeBuildParent(GNode *, GNodeListNode *);
+static void MakeBuildParent(GNode *, GNodeListNode *);
 
 static void
 ScheduleOrderSuccessors(GNode *gn)
@@ -608,8 +608,7 @@
        GNodeListNode *ln;
 
        for (ln = gn->order_succ.first; ln != NULL; ln = ln->next)
-               if (MakeBuildParent(ln->datum, toBeMadeNext) != 0)
-                       break;
+               MakeBuildParent(ln->datum, toBeMadeNext);
 }
 
 /*
@@ -938,18 +937,16 @@
 }
 
 /* When a .ORDER LHS node completes, we do this on each RHS. */
-static int
+static void
 MakeBuildParent(GNode *pn, GNodeListNode *toBeMadeNext)
 {
        if (pn->made != DEFERRED)
-               return 0;
+               return;
 
        if (!MakeBuildChild(pn, toBeMadeNext)) {
                /* When this node is built, reschedule its parents. */
                pn->flags |= DONE_ORDER;
        }
-
-       return 0;
 }
 
 static void



Home | Main Index | Thread Index | Old Index