aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-08-30 13:44:27 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-08-30 13:44:27 +0200
commit58bf902a94b5d26f546e3d4186d6f51e050be427 (patch)
tree6a74f80bf1aa489bf7cbf82c08f1f2deb5b2d65b /findutils
parentf8ee849ecd42fa11da6c5f381ad83594840b3cca (diff)
downloadbusybox-58bf902a94b5d26f546e3d4186d6f51e050be427.tar.gz
xargs: fix a thinko in last commit
IF_FEATURE_XARGS_SUPPORT_PARALLEL(char *opt_a = NULL;) is replaced with IF_FEATURE_XARGS_SUPPORT_ARGS_FILE Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils')
-rw-r--r--findutils/xargs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index acee0319a..117a39b62 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -593,7 +593,7 @@ int xargs_main(int argc UNUSED_PARAM, char **argv)
#else
#define read_args process_stdin
#endif
- IF_FEATURE_XARGS_SUPPORT_PARALLEL(char *opt_a = NULL;)
+ IF_FEATURE_XARGS_SUPPORT_ARGS_FILE(char *opt_a = NULL;)
INIT_G();