From f8664b6c8e245565890deffbc26dc1af15972cb0 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 31 Jan 2022 08:42:07 -0800 Subject: [PATCH] shred: remove IF_LINT MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * src/shred.c (dopass): Remove a no-longer-needed IF_LINT. (read_line): Remove an IF_LINT; no longer needed with today’s GCC. --- src/shred.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.47.2