From 74377e7215a1f72261d69725007299ac28c0019f Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Wed, 28 Jan 2026 13:18:13 -0800 Subject: Remove inline keyword from minizip zip.c. --- contrib/minizip/zip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/minizip/zip.c b/contrib/minizip/zip.c index 37cafbf8..b6c7550e 100644 --- a/contrib/minizip/zip.c +++ b/contrib/minizip/zip.c @@ -1252,7 +1252,7 @@ local int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt s // of bytes examined in order to determine it was bad. Or if minus the return // code is one less than len, then at least one more byte than provided would // be needed to complete the code. -local inline int utf8len(unsigned char const *str, size_t len) { +local int utf8len(unsigned char const *str, size_t len) { return len == 0 ? -1 : // empty input str[0] < 0x80 ? 1 : // good one-byte -- cgit v1.2.3-55-g6feb