From 5c47debbf0518135d75a3426eb136b1e01eb0845 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 13 Dec 2010 16:20:06 -0800 Subject: [PATCH] ofp-util: Use proper format specifier for uint32_t in ofputil_lookup_openflow_message(). --- lib/ofp-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2