From: Matt Kraai Date: Tue, 5 Dec 2000 20:07:27 +0000 (-0000) Subject: Use perrorMsg and clean up exit status. X-Git-Tag: 0_48~70 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=deb9d4d76545ac68a1df6490f0c767cc11b44741;p=oweals%2Fbusybox.git Use perrorMsg and clean up exit status. --- diff --git a/procps/renice.c b/procps/renice.c index d79a64d1a..c81f31c5c 100644 --- a/procps/renice.c +++ b/procps/renice.c @@ -29,7 +29,7 @@ extern int renice_main(int argc, char **argv) { - int prio, err = 0; + int prio, status = EXIT_SUCCESS; if (argc < 3) usage(renice_usage); @@ -44,10 +44,10 @@ extern int renice_main(int argc, char **argv) if (setpriority(PRIO_PROCESS, ps, prio) == 0) { printf("%d: old priority %d, new priority %d\n", ps, oldp, prio ); } else { - fprintf(stderr, "renice: %d: setpriority: ", ps); - perror(""); - err = 1; + perrorMsg("%d: setpriority", ps); + status = EXIT_FAILURE; } } - exit(err); + + return status; } diff --git a/renice.c b/renice.c index d79a64d1a..c81f31c5c 100644 --- a/renice.c +++ b/renice.c @@ -29,7 +29,7 @@ extern int renice_main(int argc, char **argv) { - int prio, err = 0; + int prio, status = EXIT_SUCCESS; if (argc < 3) usage(renice_usage); @@ -44,10 +44,10 @@ extern int renice_main(int argc, char **argv) if (setpriority(PRIO_PROCESS, ps, prio) == 0) { printf("%d: old priority %d, new priority %d\n", ps, oldp, prio ); } else { - fprintf(stderr, "renice: %d: setpriority: ", ps); - perror(""); - err = 1; + perrorMsg("%d: setpriority", ps); + status = EXIT_FAILURE; } } - exit(err); + + return status; }