diff options
Diffstat (limited to 'toys/pending/bootchartd.c')
-rw-r--r-- | toys/pending/bootchartd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/bootchartd.c b/toys/pending/bootchartd.c index b29d4f05..d903405f 100644 --- a/toys/pending/bootchartd.c +++ b/toys/pending/bootchartd.c @@ -309,7 +309,7 @@ void bootchartd_main() if (bchartd_opt == 1 && toys.optargs[1]) { pid_t prog_pid; - if (!(prog_pid = xfork())) xexec_optargs(1); + if (!(prog_pid = xfork())) xexec(toys.optargs+1); waitpid(prog_pid, NULL, 0); kill(lgr_pid, SIGUSR1); } |