diff options
-rw-r--r-- | toys/posix/xargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/xargs.c b/toys/posix/xargs.c index 367f2297..79e7dea5 100644 --- a/toys/posix/xargs.c +++ b/toys/posix/xargs.c @@ -117,7 +117,7 @@ void xargs_main(void) // count entries for (entries = 0, bytes = -1; entries < toys.optc; entries++) bytes += strlen(toys.optargs[entries])+1+sizeof(char *)*!FLAG(s); - if (bytes >= TT.s) error_exit("argument too long"); + if (bytes >= TT.s) error_exit("command too long"); // Loop through exec chunks. while (data || !done) { |