summaryrefslogtreecommitdiff
path: root/findutils/xargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r--findutils/xargs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index 7db374c4a..9133b8f6c 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -529,11 +529,11 @@ int xargs_main(int argc, char **argv)
529 if (opt & (OPT_INTERACTIVE | OPT_VERBOSE)) { 529 if (opt & (OPT_INTERACTIVE | OPT_VERBOSE)) {
530 for (i = 0; args[i]; i++) { 530 for (i = 0; args[i]; i++) {
531 if (i) 531 if (i)
532 fputc(' ', stderr); 532 bb_putchar_stderr(' ');
533 fputs(args[i], stderr); 533 fputs(args[i], stderr);
534 } 534 }
535 if (!(opt & OPT_INTERACTIVE)) 535 if (!(opt & OPT_INTERACTIVE))
536 fputc('\n', stderr); 536 bb_putchar_stderr('\n');
537 } 537 }
538 if (!(opt & OPT_INTERACTIVE) || xargs_ask_confirmation()) { 538 if (!(opt & OPT_INTERACTIVE) || xargs_ask_confirmation()) {
539 child_error = xargs_exec(args); 539 child_error = xargs_exec(args);