aboutsummaryrefslogtreecommitdiff
path: root/find.c
diff options
context:
space:
mode:
Diffstat (limited to 'find.c')
-rw-r--r--find.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/find.c b/find.c
index 48faf2c30..a86b07e73 100644
--- a/find.c
+++ b/find.c
@@ -100,8 +100,8 @@ int find_main(int argc, char **argv)
100 100
101 if (recursiveAction(directory, TRUE, FALSE, FALSE, 101 if (recursiveAction(directory, TRUE, FALSE, FALSE,
102 fileAction, fileAction, NULL) == FALSE) { 102 fileAction, fileAction, NULL) == FALSE) {
103 exit(FALSE); 103 return EXIT_FAILURE;
104 } 104 }
105 105
106 return(TRUE); 106 return EXIT_SUCCESS;
107} 107}