diff options
author | bde <bde@FreeBSD.org> | 1998-11-29 12:17:09 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-11-29 12:17:09 +0000 |
commit | 584f2f4b8fb68573d792da237caa1569fe1ea721 (patch) | |
tree | 69cd8b129b53985c2627c8f81269c751e5d59f6c /usr.bin/find | |
parent | 686e5f3db2b1601485c60cb8a4c55f5157861d72 (diff) | |
download | FreeBSD-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.c | 2 |
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); } |