From 213b00cfb6282bdbd6023b54a81865c79252a593 Mon Sep 17 00:00:00 2001 From: Alex Wang Date: Sat, 18 May 2013 21:33:25 -0700 Subject: [PATCH] ofproto/ofproto-dpif.c: Fix a typo in function header There is a typo in the "bundle_add_port()" function header. This patch fixes it. Signed-off-by: Alex Wang Signed-off-by: Ben Pfaff --- ofproto/ofproto-dpif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index c4f7d2519..5cc56d126 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -2472,7 +2472,7 @@ bundle_del_port(struct ofport_dpif *port) } static bool -bundle_add_port(struct ofbundle *bundle, uint32_t ofp_port, +bundle_add_port(struct ofbundle *bundle, uint16_t ofp_port, struct lacp_slave_settings *lacp) { struct ofport_dpif *port; -- 2.47.0