diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-12-20 23:13:26 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-12-20 23:13:26 +0000 |
commit | c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65 (patch) | |
tree | 97414e991363fa613f229019d697280cae1097e0 /coreutils/chgrp.c | |
parent | 62ecfc62e8eb535636f3c1029052f4b13b9b2183 (diff) | |
download | busybox-w32-c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65.tar.gz busybox-w32-c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65.tar.bz2 busybox-w32-c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65.zip |
Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
git-svn-id: svn://busybox.net/trunk/busybox@3925 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r-- | coreutils/chgrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index 43ffeb7e6..968b448c0 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c | |||
@@ -72,8 +72,8 @@ int chgrp_main(int argc, char **argv) | |||
72 | 72 | ||
73 | /* Ok, ready to do the deed now */ | 73 | /* Ok, ready to do the deed now */ |
74 | while (++optind < argc) { | 74 | while (++optind < argc) { |
75 | if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, | 75 | if (! recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, |
76 | fileAction, fileAction, NULL) == FALSE) { | 76 | fileAction, fileAction, NULL)) { |
77 | return EXIT_FAILURE; | 77 | return EXIT_FAILURE; |
78 | } | 78 | } |
79 | } | 79 | } |