From d047fd17b88dab301d01a67ac6531865767aeeca Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Thu, 13 Dec 2012 14:41:36 -0800 Subject: [PATCH] ofp-util: Fix typo in invalid port range error message. Signed-off-by: Justin Pettit --- 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 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 { -- 2.47.0