From de0bcdee1d62f3b432922fdb7ac001d4b3d6a58e Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 27 Jun 2017 14:57:59 +0200 Subject: xargs: avoid unused variable This was forgotten in 124bbf029 (xargs: read characters directly from console so -p flag works, 2014-09-10). Signed-off-by: Johannes Schindelin Signed-off-by: Ron Yorston --- findutils/xargs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/findutils/xargs.c b/findutils/xargs.c index 97afef039..4765085dc 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c @@ -405,7 +405,9 @@ static char* FAST_FUNC process_stdin_with_replace(int n_max_chars, int n_max_arg */ static int xargs_ask_confirmation(void) { +#if !ENABLE_PLATFORM_MINGW32 FILE *tty_stream; +#endif int c, savec; #if !ENABLE_PLATFORM_MINGW32 -- cgit v1.2.3-55-g6feb