From: Justin Pettit Date: Thu, 13 Dec 2012 22:41:36 +0000 (-0800) Subject: ofp-util: Fix typo in invalid port range error message. X-Git-Tag: sliver-openvswitch-1.9.90-3~10^2~91 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=d047fd17b88dab301d01a67ac6531865767aeeca;p=sliver-openvswitch.git ofp-util: Fix typo in invalid port range error message. Signed-off-by: Justin Pettit --- diff --git a/lib/ofp-util.c b/lib/ofp-util.c index d5333eeaa..f7725514b 100644 --- a/lib/ofp-util.c +++ b/lib/ofp-util.c @@ -4023,7 +4023,7 @@ ofputil_port_from_string(const char *s, uint16_t *portp) return true; } else if (port32 < OFPP11_MAX) { VLOG_WARN("port %u is outside the supported range 0 through " - "%"PRIx16"or 0x%x through 0x%"PRIx32, port32, + "%"PRIx16" or 0x%x through 0x%"PRIx32, port32, UINT16_MAX, (unsigned int) OFPP11_MAX, UINT32_MAX); return false; } else {