X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvconn.c;h=380e374aa8b60883060f2908c6237e74da038c5a;hb=4617e2c141500f8b06d1e9b1478b286756a3e391;hp=ec0ac4e154022d5be2031f1e72d5226f8957fd28;hpb=d295e8e97acae13552a5b220d3fbcff8201064a2;p=openvswitch diff --git a/lib/vconn.c b/lib/vconn.c index ec0ac4e1..380e374a 100644 --- a/lib/vconn.c +++ b/lib/vconn.c @@ -38,7 +38,7 @@ #include "util.h" #include "vlog.h" -VLOG_DEFINE_THIS_MODULE(vconn) +VLOG_DEFINE_THIS_MODULE(vconn); /* State of an active vconn.*/ enum vconn_state { @@ -667,7 +667,8 @@ vconn_recv_xid(struct vconn *vconn, uint32_t xid, struct ofpbuf **replyp) } VLOG_DBG_RL(&bad_ofmsg_rl, "%s: received reply with xid %08"PRIx32 - " != expected %08"PRIx32, vconn->name, recv_xid, xid); + " != expected %08"PRIx32, + vconn->name, ntohl(recv_xid), ntohl(xid)); ofpbuf_delete(reply); } }