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

Commit ae8927aa authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by android code review
Browse files

Merge "Fix a print format warning"

parents 9494f297 8d9aa37a
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;
    }