aboutsummaryrefslogtreecommitdiff
path: root/coreutils/cat.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/cat.c')
-rw-r--r--coreutils/cat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cat.c b/coreutils/cat.c
index 820b6342e..33f15da71 100644
--- a/coreutils/cat.c
+++ b/coreutils/cat.c
@@ -37,7 +37,7 @@ extern int cat_main(int argc, char **argv)
37 while (--argc > 0) { 37 while (--argc > 0) {
38 if(!(strcmp(*++argv, "-"))) { 38 if(!(strcmp(*++argv, "-"))) {
39 print_file(stdin); 39 print_file(stdin);
40 } else if (print_file_by_name(*argv) == FALSE) { 40 } else if (! print_file_by_name(*argv)) {
41 status = EXIT_FAILURE; 41 status = EXIT_FAILURE;
42 } 42 }
43 } 43 }