From 747e296ff656813340c9355d98b0a13cba8473bc Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 4 Dec 2018 21:29:51 -0600 Subject: Add FLAG(x) macro, expanding to (toys.optflags & FLAG_##x) --- 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 aaa0ac79..d25a2e3f 100644 --- a/toys/posix/xargs.c +++ b/toys/posix/xargs.c @@ -120,7 +120,7 @@ void xargs_main(void) posix_max_bytes = sysconf(_SC_ARG_MAX) - environ_bytes() - 2048; if (!TT.s || TT.s > posix_max_bytes) TT.s = posix_max_bytes; - if (!(toys.optflags & FLAG_0)) TT.delim = '\n'; + if (!FLAG(0)) TT.delim = '\n'; // If no optargs, call echo. if (!toys.optc) { -- cgit v1.2.3