Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a7b9aab authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

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

* commit '79e30b6c':
  Fix a print format warning
parents 2fec4de5 79e30b6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }