Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / ps.c
diff --git a/ps.c b/ps.c
index df321612a57924f5f6f95620c4e02c8a2acca820..4998e15b195ce51dc4b3eecc19a17bb632e77355 100644 (file)
--- a/ps.c
+++ b/ps.c
@@ -183,7 +183,7 @@ extern int ps_main(int argc, char **argv)
                fprintf(stdout, "\n");
        }
        closedir(dir);
-       return(TRUE);
+       return EXIT_SUCCESS;
 }