diff options
author | Neale Ranns <nranns@cisco.com> | 2019-02-22 12:40:53 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-03-26 20:40:46 +0000 |
commit | 8d6723968945d686b94f780b5a755fd3a73d4be6 (patch) | |
tree | 1432d159b831e81d3ea8b80f177cbd183e6fe38c /src/vnet/ethernet | |
parent | 327fbae5959f52c7fe670d8d204faaf2c8781a17 (diff) |
Callback functions must have the correct signature
Change-Id: I642823bdc3c7006a0b719ec1e3a9cd75b2b37253
Signed-off-by: Neale Ranns <nranns@cisco.com>
(cherry picked from commit 8f215b4a03a98bf94931a09b23ab0fbd8ccd1ab9)
Diffstat (limited to 'src/vnet/ethernet')
-rw-r--r-- | src/vnet/ethernet/arp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/ethernet/arp.c b/src/vnet/ethernet/arp.c index e6e3a515b97..ec176de9309 100644 --- a/src/vnet/ethernet/arp.c +++ b/src/vnet/ethernet/arp.c @@ -2615,7 +2615,7 @@ send_ip4_garp_w_addr (vlib_main_t * vm, /* * Remove any arp entries asociated with the specificed interface */ -void +static clib_error_t * vnet_arp_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index, u32 is_add) { if (!is_add && sw_if_index != ~0) @@ -2632,6 +2632,8 @@ vnet_arp_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index, u32 is_add) })); /* *INDENT-ON* */ } + + return (NULL); } VNET_SW_INTERFACE_ADD_DEL_FUNCTION (vnet_arp_delete_sw_interface); |