From c0045207a7cd3bc11aace920d895c69b027c16af Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 7 Feb 2015 16:17:44 -0600 Subject: Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs(). --- toys/posix/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/time.c') 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; -- cgit v1.2.3