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

pull/826/head
Mark Adler 2 years ago
parent 3061e5013c
commit dcd0d86b9e
  1. 2
      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;

Loading…
Cancel
Save