am 79e30b6c: am ae8927aa: Merge "Fix a print format warning"

* commit '79e30b6c798b482115efb94c2d9978d20c1d4a54':
  Fix a print format warning
This commit is contained in:
Jean-Baptiste Queru 2012-08-13 10:58:49 -07:00 committed by Android Git Automerger
commit 9a7b9aab08
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;
}