X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=verify.c;h=4440d443ce1a3e094cb40a1f75594a388905f50d;hb=e26f8f7a38365148ba1f345391da8596a8f7269e;hp=43520bd398992d7292294df13d782917b1e77272;hpb=a9619d44b439ac9c0d292925a5b4fd1b944d1263;p=fio.git diff --git a/verify.c b/verify.c index 43520bd3..4440d443 100644 --- a/verify.c +++ b/verify.c @@ -51,7 +51,7 @@ static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u) c = crc32(p, hdr->len - sizeof(*hdr)); if (c != hdr->crc32) { - log_err("crc32: verify failed at %llu/%u\n", io_u->offset, io_u->buflen); + log_err("crc32: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen); log_err("crc32: wanted %lx, got %lx\n", hdr->crc32, c); return 1; } @@ -69,7 +69,7 @@ static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u) md5_update(&md5_ctx, p, hdr->len - sizeof(*hdr)); if (memcmp(hdr->md5_digest, md5_ctx.hash, sizeof(md5_ctx.hash))) { - log_err("md5: verify failed at %llu/%u\n", io_u->offset, io_u->buflen); + log_err("md5: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen); hexdump(hdr->md5_digest, sizeof(hdr->md5_digest)); hexdump(md5_ctx.hash, sizeof(md5_ctx.hash)); return 1; @@ -91,7 +91,7 @@ static int verify_io_u(struct io_u *io_u) else if (hdr->verify_type == VERIFY_CRC32) ret = verify_io_u_crc32(hdr, io_u); else { - log_err("Bad verify type %d\n", hdr->verify_type); + log_err("Bad verify type %u\n", hdr->verify_type); ret = 1; }