ofp-util: Fix typo in invalid port range error message.
authorJustin Pettit <jpettit@nicira.com>
Thu, 13 Dec 2012 22:41:36 +0000 (14:41 -0800)
committerJustin Pettit <jpettit@nicira.com>
Fri, 14 Dec 2012 00:32:44 +0000 (16:32 -0800)
Signed-off-by: Justin Pettit <jpettit@nicira.com>
lib/ofp-util.c

index aa811d6..a8f8222 100644 (file)
@@ -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 {