Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / gunzip.c
index 70b25bdb073e549bb39e5c54d8222bb93afe25ce..eeff9774ad3c1f8022c4c5b68065b56febcfaa07 100644 (file)
--- a/gunzip.c
+++ b/gunzip.c
@@ -1350,7 +1350,7 @@ int gunzip_main(int argc, char **argv)
 
                if (delInputFile == 1 && unlink(delFileName) < 0) {
                        perror(delFileName);
-                       exit(FALSE);
+                       return EXIT_FAILURE;
                }
        }
        return(exit_code);