diff options
Diffstat (limited to 'usr.bin/make/lst.lib/lstFindFrom.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstFindFrom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/lst.lib/lstFindFrom.c b/usr.bin/make/lst.lib/lstFindFrom.c index 557048b..e8f0ac5 100644 --- a/usr.bin/make/lst.lib/lstFindFrom.c +++ b/usr.bin/make/lst.lib/lstFindFrom.c @@ -70,14 +70,14 @@ Lst_FindFrom(Lst l, LstNode ln, void *d, CompareProc *cProc) LstNode tln; Boolean found = FALSE; - if (!Lst_Valid (l) || Lst_IsEmpty (l) || !Lst_NodeValid (ln, l)) { + if (!Lst_Valid(l) || Lst_IsEmpty(l) || !Lst_NodeValid(ln, l)) { return (NULL); } tln = ln; do { - if ((*cProc) (tln->datum, d) == 0) { + if ((*cProc)(tln->datum, d) == 0) { found = TRUE; break; } else { |