diff options
author | Rob Landley <rob@landley.net> | 2015-02-07 16:17:44 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-02-07 16:17:44 -0600 |
commit | c0045207a7cd3bc11aace920d895c69b027c16af (patch) | |
tree | 5cee9d0fc3013c62800c0402f52f6f8cac9405cd /toys/other/taskset.c | |
parent | a48cfba9520a8ad9bf1308dcbac3fc6ee23894ba (diff) | |
download | toybox-c0045207a7cd3bc11aace920d895c69b027c16af.tar.gz toybox-c0045207a7cd3bc11aace920d895c69b027c16af.tar.bz2 toybox-c0045207a7cd3bc11aace920d895c69b027c16af.zip |
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/other/taskset.c')
-rw-r--r-- | toys/other/taskset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/taskset.c b/toys/other/taskset.c index bcc0347..2b067d4 100644 --- a/toys/other/taskset.c +++ b/toys/other/taskset.c @@ -90,7 +90,7 @@ void taskset_main(void) if (!(toys.optflags & FLAG_p)) { if (toys.optc < 2) error_exit("Needs 2 args"); do_taskset(getpid(), 1); - xexec_optargs(1); + xexec(toys.optargs+1); } else { char *c; pid_t pid = strtol(toys.optargs[toys.optc-1], &c, 10); |