diff options
Diffstat (limited to 'miscutils/ionice.c')
-rw-r--r-- | miscutils/ionice.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miscutils/ionice.c b/miscutils/ionice.c index 8393cd8b2..52e51b908 100644 --- a/miscutils/ionice.c +++ b/miscutils/ionice.c | |||
@@ -90,8 +90,7 @@ int ionice_main(int argc UNUSED_PARAM, char **argv) | |||
90 | if (ioprio_set(IOPRIO_WHO_PROCESS, pid, pri) == -1) | 90 | if (ioprio_set(IOPRIO_WHO_PROCESS, pid, pri) == -1) |
91 | bb_perror_msg_and_die("ioprio_%cet", 's'); | 91 | bb_perror_msg_and_die("ioprio_%cet", 's'); |
92 | if (argv[0]) { | 92 | if (argv[0]) { |
93 | BB_EXECVP(argv[0], argv); | 93 | BB_EXECVP_or_die(argv); |
94 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); | ||
95 | } | 94 | } |
96 | } | 95 | } |
97 | 96 | ||