diff options
-rw-r--r-- | runit/chpst.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runit/chpst.c b/runit/chpst.c index 2be1a5775..4e3d613b7 100644 --- a/runit/chpst.c +++ b/runit/chpst.c | |||
@@ -466,7 +466,8 @@ int chpst_main(int argc UNUSED_PARAM, char **argv) | |||
466 | /* nice should be done before xsetuid */ | 466 | /* nice should be done before xsetuid */ |
467 | if (opt & OPT_n) { | 467 | if (opt & OPT_n) { |
468 | errno = 0; | 468 | errno = 0; |
469 | if (nice(xatoi(nicestr)) == -1) | 469 | nice(xatoi(nicestr)); |
470 | if (errno) | ||
470 | bb_simple_perror_msg_and_die("nice"); | 471 | bb_simple_perror_msg_and_die("nice"); |
471 | } | 472 | } |
472 | 473 | ||