aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/time.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-02-07 16:17:44 -0600
committerRob Landley <rob@landley.net>2015-02-07 16:17:44 -0600
commitc0045207a7cd3bc11aace920d895c69b027c16af (patch)
tree5cee9d0fc3013c62800c0402f52f6f8cac9405cd /toys/posix/time.c
parenta48cfba9520a8ad9bf1308dcbac3fc6ee23894ba (diff)
downloadtoybox-c0045207a7cd3bc11aace920d895c69b027c16af.tar.gz
Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs().
Diffstat (limited to 'toys/posix/time.c')
-rw-r--r--toys/posix/time.c2
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;