diff options
Diffstat (limited to 'toys/posix/time.c')
-rw-r--r-- | toys/posix/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/time.c b/toys/posix/time.c index 01592052..01da9711 100644 --- a/toys/posix/time.c +++ b/toys/posix/time.c @@ -27,7 +27,7 @@ void time_main(void) struct timeval tv, tv2; gettimeofday(&tv, NULL); - if (!(pid = xfork())) xexec_optargs(0); + if (!(pid = xfork())) xexec(toys.optargs); else { int stat; struct rusage ru; |