commit | 1f0c43668ac332cbcf61cbdf71844799327cc8b9 | [log] [tgz] |
---|---|---|
author | Matt Kraai <kraai@debian.org> | Thu Dec 20 23:13:26 2001 +0000 |
committer | Matt Kraai <kraai@debian.org> | Thu Dec 20 23:13:26 2001 +0000 |
tree | 97414e991363fa613f229019d697280cae1097e0 | |
parent | 31c73af656813b5cadcb1dd27adb9bbc62a98987 [diff] [blame] |
Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
diff --git a/coreutils/cat.c b/coreutils/cat.c index 820b634..33f15da 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c
@@ -37,7 +37,7 @@ while (--argc > 0) { if(!(strcmp(*++argv, "-"))) { print_file(stdin); - } else if (print_file_by_name(*argv) == FALSE) { + } else if (! print_file_by_name(*argv)) { status = EXIT_FAILURE; } }