am 79e30b6c: am ae8927aa: Merge "Fix a print format warning"
* commit '79e30b6c798b482115efb94c2d9978d20c1d4a54': Fix a print format warning
This commit is contained in:
commit
9a7b9aab08
|
@ -192,7 +192,7 @@ read_central_dir(Zipfile *file)
|
|||
|
||||
// too small to be a ZIP archive?
|
||||
if (bufsize < EOCD_LEN) {
|
||||
fprintf(stderr, "Length is %d -- too small\n", bufsize);
|
||||
fprintf(stderr, "Length is %zd -- too small\n", bufsize);
|
||||
goto bail;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue