Skip to content

Commit 74377e7

Browse files
committed
Remove inline keyword from minizip zip.c.
1 parent 2f752ce commit 74377e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/minizip/zip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ local int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt s
12521252
// of bytes examined in order to determine it was bad. Or if minus the return
12531253
// code is one less than len, then at least one more byte than provided would
12541254
// be needed to complete the code.
1255-
local inline int utf8len(unsigned char const *str, size_t len) {
1255+
local int utf8len(unsigned char const *str, size_t len) {
12561256
return
12571257
len == 0 ? -1 : // empty input
12581258
str[0] < 0x80 ? 1 : // good one-byte

0 commit comments

Comments
 (0)