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

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

am ae8927aa: Merge "Fix a print format warning"

* commit 'ae8927aa':
  Fix a print format warning
parents 11c783f1 ae8927aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -192,7 +192,7 @@ read_central_dir(Zipfile *file)


    // too small to be a ZIP archive?
    // too small to be a ZIP archive?
    if (bufsize < EOCD_LEN) {
    if (bufsize < EOCD_LEN) {
        fprintf(stderr, "Length is %d -- too small\n", bufsize);
        fprintf(stderr, "Length is %zd -- too small\n", bufsize);
        goto bail;
        goto bail;
    }
    }