use BB_EXECVP_or_die where appropriate

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-11-28 04:34:09 +01:00
parent 57542ebe4f
commit 1c31e9e82b
3 changed files with 3 additions and 6 deletions

View File

@@ -441,8 +441,7 @@ int bootchartd_main(int argc UNUSED_PARAM, char **argv)
pid_t pid = xvfork();
if (pid == 0) { /* child */
argv += 2;
execvp(argv[0], argv);
bb_perror_msg_and_die("can't execute '%s'", argv[0]);
BB_EXECVP_or_die(argv);
}
/* parent */
waitpid(pid, NULL, 0);