diff options
| -rw-r--r-- | findutils/xargs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c index 2ce5634ca..6df8a035d 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c | |||
| @@ -821,7 +821,11 @@ int xargs_main(int argc UNUSED_PARAM, char **argv) | |||
| 821 | fmt = " %s"; | 821 | fmt = " %s"; |
| 822 | } | 822 | } |
| 823 | if (!(opt & OPT_INTERACTIVE)) | 823 | if (!(opt & OPT_INTERACTIVE)) |
| 824 | #if !ENABLE_PLATFORM_MINGW32 | ||
| 824 | bb_putchar_stderr('\n'); | 825 | bb_putchar_stderr('\n'); |
| 826 | #else | ||
| 827 | fprintf(stderr, "\n"); | ||
| 828 | #endif | ||
| 825 | } | 829 | } |
| 826 | 830 | ||
| 827 | if (!(opt & OPT_INTERACTIVE) || xargs_ask_confirmation()) { | 831 | if (!(opt & OPT_INTERACTIVE) || xargs_ask_confirmation()) { |
