From: Paul Eggert Date: Mon, 31 Jan 2022 16:42:07 +0000 (-0800) Subject: uniq: remove IF_LINT X-Git-Tag: v9.1~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=701fcbc78e55ef5a5ed23ced7c6f54c5428b7b23;p=thirdparty%2Fcoreutils.git uniq: remove IF_LINT * src/uniq.c (check_file): Remove a no-longer-needed IF_LINT. --- diff --git a/src/uniq.c b/src/uniq.c index 4679298724..e5996f0d0c 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -354,7 +354,7 @@ check_file (char const *infile, char const *outfile, char delimiter) if (output_unique && output_first_repeated && countmode == count_none) { char *prevfield = NULL; - size_t prevlen IF_LINT ( = 0); + size_t prevlen; bool first_group_printed = false; while (!feof (stdin))