diff options
Diffstat (limited to 'find.c')
-rw-r--r-- | find.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |