From 010ba6e9ccf4b2c002dad35f0c03acce78a5c671 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 31 Jan 2022 08:42:07 -0800 Subject: [PATCH 33/43] paste: remove IF_LINT * src/paste.c (paste_parallel): Remove no-longer-needed IF_LINT. --- src/paste.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/paste.c b/src/paste.c index fafa8bc74..0a8d52535 100644 --- a/src/paste.c +++ b/src/paste.c @@ -233,8 +233,8 @@ paste_parallel (size_t nfiles, char **fnamptr) for (size_t i = 0; i < nfiles && files_open; i++) { - int chr IF_LINT ( = 0); /* Input character. */ - int err IF_LINT ( = 0); /* Input errno value. */ + int chr; /* Input character. */ + int err; /* Input errno value. */ bool sometodo = false; /* Input chars to process. */ if (fileptr[i]) -- 2.32.0