X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fofproto-dpif-upcall.c;h=dde64300a3bdb5586a69db945a9aaab34920252e;hb=0a407cd6f2129793940bfbd42dc39fe97e93e14b;hp=dba3d3be3d3bbe1e4aec1d7b93efb9888f5bc70b;hpb=5ea1eab089607de8f87189fe4463364e26576070;p=sliver-openvswitch.git diff --git a/ofproto/ofproto-dpif-upcall.c b/ofproto/ofproto-dpif-upcall.c index dba3d3be3..dde64300a 100644 --- a/ofproto/ofproto-dpif-upcall.c +++ b/ofproto/ofproto-dpif-upcall.c @@ -462,7 +462,7 @@ classify_upcall(const struct upcall *upcall) userdata_len = nl_attr_get_size(dpif_upcall->userdata); if (userdata_len < sizeof cookie.type || userdata_len > sizeof cookie) { - VLOG_WARN_RL(&rl, "action upcall cookie has unexpected size %zu", + VLOG_WARN_RL(&rl, "action upcall cookie has unexpected size %"PRIuSIZE, userdata_len); return BAD_UPCALL; } @@ -482,7 +482,7 @@ classify_upcall(const struct upcall *upcall) return IPFIX_UPCALL; } else { VLOG_WARN_RL(&rl, "invalid user cookie of type %"PRIu16 - " and size %zu", cookie.type, userdata_len); + " and size %"PRIuSIZE, cookie.type, userdata_len); return BAD_UPCALL; } }