X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=engines%2Fnet.c;h=c6cec5845aac48a3a8643b88c89b5f27fcdb8995;hb=3fd60780bc5984639b568e85d31ede7a50f4e1e5;hp=91f25774690a16ec9e20576ebb95e3e4e2e9f82e;hpb=998baa29f571df9d2e4b626bedd317a2fd28c68a;p=fio.git diff --git a/engines/net.c b/engines/net.c index 91f25774..c6cec584 100644 --- a/engines/net.c +++ b/engines/net.c @@ -938,8 +938,9 @@ static int fio_netio_udp_recv_open(struct thread_data *td, struct fio_file *f) if (ntohl(msg.magic) != FIO_LINK_OPEN_CLOSE_MAGIC || ntohl(msg.cmd) != FIO_LINK_OPEN) { - log_err("fio: bad udp open magic %x/%x\n", ntohl(msg.magic), - ntohl(msg.cmd)); + log_err("fio: bad udp open magic %x/%x\n", + (unsigned int) ntohl(msg.magic), + (unsigned int) ntohl(msg.cmd)); return -1; }