From: Alex Wang Date: Sun, 19 May 2013 04:33:25 +0000 (-0700) Subject: ofproto/ofproto-dpif.c: Fix a typo in function header X-Git-Tag: sliver-openvswitch-1.10.90-3~6^2~241 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=213b00cfb6282bdbd6023b54a81865c79252a593;p=sliver-openvswitch.git 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 --- 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;