[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20230616165832.69866-1-ben.dooks@codethink.co.uk>
Date: Fri, 16 Jun 2023 17:58:32 +0100
From: Ben Dooks <ben.dooks@...ethink.co.uk>
To: linux-kernel@...r.kernel.org
Cc: Ben Dooks <ben.dooks@...ethink.co.uk>
Subject: [PATCH] lib: zlib: make __gunzip always static
The __gunzip() code looks like it has not been referenced outside of
lib/decompress_inflate.c so make it always static to avoid the following
warning:
lib/decompress_inflate.c:42:17: warning: symbol '__gunzip' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@...ethink.co.uk>
---
lib/decompress_inflate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/decompress_inflate.c b/lib/decompress_inflate.c
index 6130c42b8e59..e19199f4a684 100644
--- a/lib/decompress_inflate.c
+++ b/lib/decompress_inflate.c
@@ -39,7 +39,7 @@ static long INIT nofill(void *buffer, unsigned long len)
}
/* Included from initramfs et al code */
-STATIC int INIT __gunzip(unsigned char *buf, long len,
+static int INIT __gunzip(unsigned char *buf, long len,
long (*fill)(void*, unsigned long),
long (*flush)(void*, unsigned long),
unsigned char *out_buf, long out_len,
--
2.39.2
Powered by blists - more mailing lists