From: Denys Vlasenko Date: Wed, 30 Aug 2017 11:44:27 +0000 (+0200) Subject: xargs: fix a thinko in last commit X-Git-Tag: 1_28_0~80 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=58bf902a94b5d26f546e3d4186d6f51e050be427;p=oweals%2Fbusybox.git 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 --- 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();