From 72f973fabf292c9d98aad5d98d587b6ec7bdb878 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Tue, 29 Apr 2025 08:20:00 +0100 Subject: [PATCH] No need to seek if not a valid object as the offset should already be at the next entry --- ranlib.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ranlib.c b/ranlib.c index 721f193..5b81377 100644 --- a/ranlib.c +++ b/ranlib.c @@ -457,8 +457,6 @@ void ranlib (void) { offset += sizeof (hdr); offset += bytes; - - fseek (arfp, bytes, SEEK_CUR); } -- 2.34.1