From: Paul Eggert Date: Mon, 31 Jan 2022 16:42:07 +0000 (-0800) Subject: shred: remove IF_LINT X-Git-Tag: v9.1~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8664b6c8e245565890deffbc26dc1af15972cb0;p=thirdparty%2Fcoreutils.git shred: remove IF_LINT * src/shred.c (dopass): Remove a no-longer-needed IF_LINT. (read_line): Remove an IF_LINT; no longer needed with today’s GCC. --- diff --git a/src/shred.c b/src/shred.c index e886763807..490fcd07e1 100644 --- a/src/shred.c +++ b/src/shred.c @@ -422,7 +422,7 @@ dopass (int fd, struct stat const *st, char const *qname, off_t *sizep, /* Printable previous offset into the file */ char previous_offset_buf[LONGEST_HUMAN_READABLE + 1]; - char const *previous_human_offset IF_LINT ( = 0); + char const *previous_human_offset; /* As a performance tweak, avoid direct I/O for small sizes, as it's just a performance rather then security consideration,