diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-30 13:44:27 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-30 13:44:27 +0200 |
commit | 58bf902a94b5d26f546e3d4186d6f51e050be427 (patch) | |
tree | 6a74f80bf1aa489bf7cbf82c08f1f2deb5b2d65b /findutils/xargs.c | |
parent | f8ee849ecd42fa11da6c5f381ad83594840b3cca (diff) |
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/xargs.c')
-rw-r--r-- | findutils/xargs.c | 2 |
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(); |