]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
uniq: remove IF_LINT
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 31 Jan 2022 16:42:07 +0000 (08:42 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 31 Jan 2022 20:07:39 +0000 (12:07 -0800)
* src/uniq.c (check_file): Remove a no-longer-needed IF_LINT.

src/uniq.c

index 4679298724c9022913e3d49d338274a316c553d1..e5996f0d0c2dec35e57c92c1fb6f31826a9835a2 100644 (file)
@@ -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))