Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / find.c
diff --git a/find.c b/find.c
index 48faf2c30bcf3bd6601fd9d3a47e11691c615a8d..a86b07e73534ab5e9eea10a5d0f115bee8b1fda4 100644 (file)
--- a/find.c
+++ b/find.c
@@ -100,8 +100,8 @@ int find_main(int argc, char **argv)
 
        if (recursiveAction(directory, TRUE, FALSE, FALSE,
                                                fileAction, fileAction, NULL) == FALSE) {
-               exit(FALSE);
+               return EXIT_FAILURE;
        }
 
-       return(TRUE);
+       return EXIT_SUCCESS;
 }