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

Commit 8d9aa37a authored by Edwin Vane's avatar Edwin Vane
Browse files

Fix a print format warning



Change-Id: I30a6a9835073a7c0f5751fc34aed958c91a050ee
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: default avatarTareq A Siraj <tareq.a.siraj@intel.com>
parent 605f8706
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;
    }