summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/minizip/minizip.c2
1 files changed, 1 insertions, 1 deletions
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) {
224 FSEEKO_FUNC(pFile, 0, SEEK_END); 224 FSEEKO_FUNC(pFile, 0, SEEK_END);
225 pos = (ZPOS64_T)FTELLO_FUNC(pFile); 225 pos = (ZPOS64_T)FTELLO_FUNC(pFile);
226 226
227 printf("File : %s is %lld bytes\n", filename, pos); 227 printf("File : %s is %llu bytes\n", filename, pos);
228 228
229 if(pos >= 0xffffffff) 229 if(pos >= 0xffffffff)
230 largeFile = 1; 230 largeFile = 1;