From: Paul Eggert Date: Fri, 1 Nov 2024 16:40:36 +0000 (-0700) Subject: Fix checkpoint_flush_actions width typo X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2339c9106b830a3a8ba53e143dd49ecab8b18d58;p=thirdparty%2Ftar.git Fix checkpoint_flush_actions width typo * src/checkpoint.c (checkpoint_flush_actions): long → intmax_t. --- diff --git a/src/checkpoint.c b/src/checkpoint.c index b2d217a4..57c7b5a1 100644 --- a/src/checkpoint.c +++ b/src/checkpoint.c @@ -432,7 +432,7 @@ checkpoint_flush_actions (void) case cop_ttyout: if (tty && tty_cleanup) { - long w = getwidth (tty); + intmax_t w = getwidth (tty); while (w--) fputc (' ', tty); fputc ('\r', tty);