* archival/bunzip2.c (bunzip2_main): Do not remove files if writing to standard
[oweals/busybox.git] / coreutils / cat.c
index 820b6342e934cbd124333691bbb4ee95226383f8..33f15da71fc3314d7be667b32ca9bbf00e6c6b57 100644 (file)
@@ -37,7 +37,7 @@ extern int cat_main(int argc, char **argv)
        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;
                }
        }