From f95d580892e253655cd8298ad03d0fed65ca5026 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 28 Oct 2019 17:06:29 -0500 Subject: Switch the fudge factor from 2048 to 4096 to unblock android build. --- toys/posix/xargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/xargs.c') diff --git a/toys/posix/xargs.c b/toys/posix/xargs.c index 11cc56ee..367f2297 100644 --- a/toys/posix/xargs.c +++ b/toys/posix/xargs.c @@ -103,7 +103,7 @@ void xargs_main(void) // that the invoked utility has room to modify its environment variables // and command line arguments and still be able to invoke another utility", // though obviously that's not really something you can guarantee. - if (!FLAG(s)) TT.s = sysconf(_SC_ARG_MAX) - environ_bytes() - 2048; + if (!FLAG(s)) TT.s = sysconf(_SC_ARG_MAX) - environ_bytes() - 4096; TT.delim = '\n'*!FLAG(0); -- cgit v1.2.3