From 8598f3d9632ced255b7cebc784b9cb5986daab58 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 31 Jan 2022 08:42:07 -0800 Subject: [PATCH 36/43] shred: remove IF_LINT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 e88676380..490fcd07e 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.32.0