From: Jens Axboe Date: Fri, 27 Jul 2007 07:53:14 +0000 (+0200) Subject: Type in crc16 verify failure X-Git-Tag: fio-1.17~43 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=1f24ea44c8d8bf40e05608b48ef342a345d75ee8;hp=1e154bdbf14a1d352117aea057035235b66f0381 Type in crc16 verify failure Should dump crc16, not crc32. Signed-off-by: Jens Axboe --- diff --git a/verify.c b/verify.c index 492cc915..533c6acf 100644 --- a/verify.c +++ b/verify.c @@ -69,7 +69,7 @@ static int verify_io_u_crc16(struct verify_header *hdr, struct io_u *io_u) if (c != hdr->crc16) { log_err("crc16: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen); - log_err("crc16: wanted %lx, got %x\n", hdr->crc32, c); + log_err("crc16: wanted %x, got %x\n", hdr->crc16, c); return 1; }