diff options
| author | Mark Adler <madler@alumni.caltech.edu> | 2023-07-29 23:55:48 -0700 |
|---|---|---|
| committer | Mark Adler <madler@alumni.caltech.edu> | 2023-07-29 23:55:48 -0700 |
| commit | dcd0d86b9e745ea79d74ba6fcd81f807b89e2f95 (patch) | |
| tree | 3e51120f60cb177ed3f7d8eca0dd5c67acfafd6d | |
| parent | 3061e5013c2569974fd7d830f2776b38da4e2691 (diff) | |
| download | zlib-dcd0d86b9e745ea79d74ba6fcd81f807b89e2f95.tar.gz zlib-dcd0d86b9e745ea79d74ba6fcd81f807b89e2f95.tar.bz2 zlib-dcd0d86b9e745ea79d74ba6fcd81f807b89e2f95.zip | |
Match sign of printf directive to sign of argument in minizip.
| -rw-r--r-- | contrib/minizip/minizip.c | 2 |
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; |
