diff toys/other/taskset.c @ 1676:cbb1aca81eca draft

Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs().
author Rob Landley <rob@landley.net>
date Sat, 07 Feb 2015 16:17:44 -0600
parents 144d5ba7d410
children
line wrap: on
line diff
--- a/toys/other/taskset.c	Sat Feb 07 15:32:22 2015 -0600
+++ b/toys/other/taskset.c	Sat Feb 07 16:17:44 2015 -0600
@@ -90,7 +90,7 @@
   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);