diff options
-rw-r--r-- | src/xz/file_io.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xz/file_io.c b/src/xz/file_io.c index fb8d64bd..f135cf7c 100644 --- a/src/xz/file_io.c +++ b/src/xz/file_io.c @@ -658,6 +658,7 @@ io_open_src(const char *src_name) static void io_close_src(file_pair *pair, bool success) { +#ifndef TUKLIB_DOSLIKE if (restore_stdin_flags) { assert(pair->src_fd == STDIN_FILENO); @@ -668,6 +669,7 @@ io_close_src(file_pair *pair, bool success) "to standard input: %s"), strerror(errno)); } +#endif if (pair->src_fd != STDIN_FILENO && pair->src_fd != -1) { #ifdef TUKLIB_DOSLIKE |