From: Paul Eggert Date: Mon, 31 Jan 2022 16:42:07 +0000 (-0800) Subject: paste: remove IF_LINT X-Git-Tag: v9.1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00973ca7773a278a744068f4f502afdd89a8ed3a;p=thirdparty%2Fcoreutils.git paste: remove IF_LINT * src/paste.c (paste_parallel): Remove no-longer-needed IF_LINT. --- diff --git a/src/paste.c b/src/paste.c index fafa8bc744..0a8d52535c 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])