Match sign of printf directive to sign of argument in minizip.

This commit is contained in:
Mark Adler 2023-07-29 23:55:48 -07:00
parent 3061e5013c
commit dcd0d86b9e
1 changed files with 1 additions and 1 deletions

View File

@ -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;