Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c
index 43ffeb7..968b448 100644
--- a/coreutils/chgrp.c
+++ b/coreutils/chgrp.c
@@ -72,8 +72,8 @@
 
 	/* Ok, ready to do the deed now */
 	while (++optind < argc) {
-		if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, 
-					fileAction, fileAction, NULL) == FALSE) {
+		if (! recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, 
+					fileAction, fileAction, NULL)) {
 			return EXIT_FAILURE;
 		}
 	}