diff options
| author | Jean-Baptiste Queru <jbq@google.com> | 2012-08-13 10:58:49 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2012-08-13 10:58:49 -0700 |
| commit | 9a7b9aab08e5640a08b312807dc57fcd469a77f2 (patch) | |
| tree | 6e0d603e93eb0f2a6042291287f16d350a3b4f92 | |
| parent | 2fec4de5c704afe4dc2a1bb976699a0e363786dd (diff) | |
| parent | 79e30b6c798b482115efb94c2d9978d20c1d4a54 (diff) | |
| download | system_core-9a7b9aab08e5640a08b312807dc57fcd469a77f2.tar.gz system_core-9a7b9aab08e5640a08b312807dc57fcd469a77f2.tar.bz2 system_core-9a7b9aab08e5640a08b312807dc57fcd469a77f2.zip | |
am 79e30b6c: am ae8927aa: Merge "Fix a print format warning"
* commit '79e30b6c798b482115efb94c2d9978d20c1d4a54':
Fix a print format warning
| -rw-r--r-- | libzipfile/centraldir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libzipfile/centraldir.c b/libzipfile/centraldir.c index 0e264a34..911e2b98 100644 --- a/libzipfile/centraldir.c +++ b/libzipfile/centraldir.c @@ -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;
}
|
