aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-08-13 10:58:49 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-13 10:58:49 -0700
commit9a7b9aab08e5640a08b312807dc57fcd469a77f2 (patch)
tree6e0d603e93eb0f2a6042291287f16d350a3b4f92
parent2fec4de5c704afe4dc2a1bb976699a0e363786dd (diff)
parent79e30b6c798b482115efb94c2d9978d20c1d4a54 (diff)
downloadsystem_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.c2
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;
}