mirror of https://github.com/madler/zlib
Match sign of printf directive to sign of argument in minizip.
This commit is contained in:
parent
3061e5013c
commit
dcd0d86b9e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue