From: Ben Pfaff Date: Tue, 14 Dec 2010 00:20:06 +0000 (-0800) Subject: ofp-util: Use proper format specifier for uint32_t in ofputil_lookup_openflow_message(). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c47debbf0518135d75a3426eb136b1e01eb0845;p=openvswitch ofp-util: Use proper format specifier for uint32_t in ofputil_lookup_openflow_message(). --- diff --git a/lib/ofp-util.c b/lib/ofp-util.c index ad9d1940..f0e0c69e 100644 --- a/lib/ofp-util.c +++ b/lib/ofp-util.c @@ -362,7 +362,7 @@ ofputil_lookup_openflow_message(const struct ofputil_msg_category *cat, } } - VLOG_WARN_RL(&bad_ofmsg_rl, "received %s of unknown type %u", + VLOG_WARN_RL(&bad_ofmsg_rl, "received %s of unknown type %"PRIu32, cat->name, value); return cat->missing_error; }