From 7c9d673b8a297d50c8fbea0ec06b488db1284b65 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 31 Jan 2022 08:42:07 -0800 Subject: [PATCH 40/43] uniq: remove IF_LINT * src/uniq.c (check_file): Remove a no-longer-needed IF_LINT. --- src/uniq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uniq.c b/src/uniq.c index 467929872..e5996f0d0 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)) -- 2.32.0