From dcd0d86b9e745ea79d74ba6fcd81f807b89e2f95 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sat, 29 Jul 2023 23:55:48 -0700 Subject: Match sign of printf directive to sign of argument in minizip. --- contrib/minizip/minizip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/minizip/minizip.c b/contrib/minizip/minizip.c index 61a9d4c..d4e129b 100644 --- a/contrib/minizip/minizip.c +++ b/contrib/minizip/minizip.c @@ -224,7 +224,7 @@ static int isLargeFile(const char* filename) { FSEEKO_FUNC(pFile, 0, SEEK_END); pos = (ZPOS64_T)FTELLO_FUNC(pFile); - printf("File : %s is %lld bytes\n", filename, pos); + printf("File : %s is %llu bytes\n", filename, pos); if(pos >= 0xffffffff) largeFile = 1; -- cgit v1.2.3-55-g6feb