Fix a print format warning

Change-Id: I30a6a9835073a7c0f5751fc34aed958c91a050ee
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: Tareq A Siraj <tareq.a.siraj@intel.com>
This commit is contained in:
Edwin Vane 2012-07-26 15:44:23 -04:00
parent 605f8706c8
commit 8d9aa37a50

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