summaryrefslogtreecommitdiffstats
path: root/usr.bin/find
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-11-29 12:17:09 +0000
committerbde <bde@FreeBSD.org>1998-11-29 12:17:09 +0000
commit584f2f4b8fb68573d792da237caa1569fe1ea721 (patch)
tree69cd8b129b53985c2627c8f81269c751e5d59f6c /usr.bin/find
parent686e5f3db2b1601485c60cb8a4c55f5157861d72 (diff)
downloadFreeBSD-src-584f2f4b8fb68573d792da237caa1569fe1ea721.zip
FreeBSD-src-584f2f4b8fb68573d792da237caa1569fe1ea721.tar.gz
Fixed style bugs in previous commit.
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/operator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c
index d331faf..3654bca 100644
--- a/usr.bin/find/operator.c
+++ b/usr.bin/find/operator.c
@@ -190,7 +190,7 @@ not_squish(plan)
int notlevel = 1;
node = yanknode(&plan);
- while ((node != NULL) && (node->type == N_NOT)) {
+ while (node != NULL && node->type == N_NOT) {
++notlevel;
node = yanknode(&plan);
}
OpenPOWER on IntegriCloud