summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/targ.c
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2000-12-02 18:58:01 +0000
committerwill <will@FreeBSD.org>2000-12-02 18:58:01 +0000
commit797262c9e92824a19005f56e85cd3f19b8273f9b (patch)
tree7680565ed1402e4003087d01cf0b545aee3b625e /usr.bin/make/targ.c
parentd04b66b7bc8243e8d0f41b0ec49287b046f7896c (diff)
downloadFreeBSD-src-797262c9e92824a19005f56e85cd3f19b8273f9b.zip
FreeBSD-src-797262c9e92824a19005f56e85cd3f19b8273f9b.tar.gz
There's no reason to use fancy forms of NULL. Replace all instances
of NIL, NILLST, NILLGNODE, etc. with NULL. Obtained from: OpenBSD
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r--usr.bin/make/targ.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c
index 26eb17e..fa43e8b 100644
--- a/usr.bin/make/targ.c
+++ b/usr.bin/make/targ.c
@@ -231,7 +231,7 @@ TargFreeGN (gnp)
* Find a node in the list using the given name for matching
*
* Results:
- * The node in the list if it was. If it wasn't, return NILGNODE of
+ * The node in the list if it was. If it wasn't, return NULL of
* flags was TARG_NOCREATE or the newly created and initialized node
* if it was TARG_CREATE
*
@@ -263,7 +263,7 @@ Targ_FindNode (name, flags)
}
if (he == (Hash_Entry *) NULL) {
- return (NILGNODE);
+ return (NULL);
} else {
return ((GNode *) Hash_GetValue (he));
}
@@ -300,10 +300,10 @@ Targ_FindList (names, flags)
if (Lst_Open (names) == FAILURE) {
return (nodes);
}
- while ((ln = Lst_Next (names)) != NILLNODE) {
+ while ((ln = Lst_Next (names)) != NULL) {
name = (char *)Lst_Datum(ln);
gn = Targ_FindNode (name, flags);
- if (gn != NILGNODE) {
+ if (gn != NULL) {
/*
* Note: Lst_AtEnd must come before the Lst_Concat so the nodes
* are added to the list in the order in which they were
OpenPOWER on IntegriCloud