From 7dc466d62155cb7442aa5e10633e084ed384360d Mon Sep 17 00:00:00 2001 From: Jia Tan Date: Thu, 23 Nov 2023 22:13:39 +0800 Subject: [PATCH] xz: Use is_tty() in message.c. --- src/xz/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xz/message.c b/src/xz/message.c index abf30adc..dec0addd 100644 --- a/src/xz/message.c +++ b/src/xz/message.c @@ -119,7 +119,7 @@ message_init(void) // exception, even if --verbose was not used, user can send SIGALRM // to make us print progress information once without automatic // updating. - progress_automatic = isatty(STDERR_FILENO); + progress_automatic = is_tty(STDERR_FILENO); // Commented out because COLUMNS is rarely exported to environment. // Most users have at least 80 columns anyway, let's think something