mirror of https://github.com/mirror/busybox.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 <vda.linux@googlemail.com>1_28_stable
parent
f8ee849ecd
commit
58bf902a94
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue