Merge "Fix a print format warning"

This commit is contained in:
Jean-Baptiste Queru 2012-08-13 10:37:55 -07:00 committed by android code review
commit ae8927aa05
1 changed files with 1 additions and 1 deletions

View File

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