Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / cp_mv.c
diff --git a/cp_mv.c b/cp_mv.c
index 2257f44220cacdd5135df6bf4c021ed02f530baf..580c92046ed539b35113746986b5cf4af59b3909 100644 (file)
--- a/cp_mv.c
+++ b/cp_mv.c
@@ -316,9 +316,9 @@ extern int cp_mv_main(int argc, char **argv)
                if (flags_memo)
                        *(baseDestName + baseDestLen) = '\0';
        }
-       return( TRUE);
+       return EXIT_SUCCESS;
  exit_false:
-       return( FALSE);
+       return EXIT_FAILURE;
 }
 
 /*