]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
md5sum: remove IF_LINTs
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/digest.c (digest_check): Remove IF_LINTs that are no longer
needed, as GCC has gotten smarter since 2008.

src/digest.c

index 95782a450348f13eaaea74ac350db8fe00449860..737a8294b467f8b3b10094461d034515c1a3e228 100644 (file)
@@ -1060,9 +1060,9 @@ digest_check (char const *checkfile_name)
   line_chars_allocated = 0;
   do
     {
-      char *filename IF_LINT ( = NULL);
+      char *filename;
       int binary;
-      unsigned char *hex_digest IF_LINT ( = NULL);
+      unsigned char *hex_digest;
       ssize_t line_length;
 
       ++line_number;