Match sign of printf directive to sign of argument in minizip.
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 @@
     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;