summaryrefslogtreecommitdiff
path: root/usr.bin/make/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r--usr.bin/make/parse.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index 8c3d78fdb1a..9f3c4a8e587 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.53 2000/09/14 13:32:07 espie Exp $ */
+/* $OpenBSD: parse.c,v 1.54 2000/09/14 13:36:46 espie Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
@@ -102,7 +102,7 @@
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
UNUSED
-static char rcsid[] = "$OpenBSD: parse.c,v 1.53 2000/09/14 13:32:07 espie Exp $";
+static char rcsid[] = "$OpenBSD: parse.c,v 1.54 2000/09/14 13:36:46 espie Exp $";
#endif
#endif /* not lint */
@@ -544,17 +544,16 @@ ParseDoSrc (tOp, src, allsrc)
*/
static int
ParseFindMain(gnp, dummy)
- void *gnp; /* Node to examine */
- void *dummy;
+ void *gnp; /* Node to examine */
+ void *dummy UNUSED;
{
GNode *gn = (GNode *) gnp;
if ((gn->type & OP_NOTARGET) == 0) {
mainNode = gn;
Targ_SetMain(gn);
- return (dummy ? 0 : 0);
- } else {
- return (dummy ? 1 : 1);
- }
+ return 0;
+ } else
+ return 1;
}
/*-