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:
parent
605f8706c8
commit
8d9aa37a50
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue