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: v1.9.0~47 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=3ecabd2412db364277b13e6abcbdc037c51e5796 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 aa811d675..a8f8222ee 100644 --- a/lib/ofp-util.c +++ b/lib/ofp-util.c @@ -3600,7 +3600,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 {