diff options
Diffstat (limited to 'miscutils/ionice.c')
-rw-r--r-- | miscutils/ionice.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/ionice.c b/miscutils/ionice.c index 361c141b8..8393cd8b2 100644 --- a/miscutils/ionice.c +++ b/miscutils/ionice.c | |||
@@ -89,9 +89,9 @@ int ionice_main(int argc UNUSED_PARAM, char **argv) | |||
89 | pri |= (ioclass << IOPRIO_CLASS_SHIFT); | 89 | pri |= (ioclass << IOPRIO_CLASS_SHIFT); |
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) { | 92 | if (argv[0]) { |
93 | BB_EXECVP(*argv, argv); | 93 | BB_EXECVP(argv[0], argv); |
94 | bb_simple_perror_msg_and_die(*argv); | 94 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
95 | } | 95 | } |
96 | } | 96 | } |
97 | 97 | ||