diff options
author | Neale Ranns <nranns@cisco.com> | 2019-02-22 12:40:53 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-02-22 18:17:20 +0000 |
commit | 8f215b4a03a98bf94931a09b23ab0fbd8ccd1ab9 (patch) | |
tree | a4fbf22772d12fe76368ab826d754b407ff6bdd9 /src/vnet/ethernet | |
parent | a68d07a2391b2a1db4c342796924e60fc39e31b6 (diff) |
Callback functions must have the correct signature
Change-Id: I642823bdc3c7006a0b719ec1e3a9cd75b2b37253
Signed-off-by: Neale Ranns <nranns@cisco.com>
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 dded56af995..6b651e7e20a 100644 --- a/src/vnet/ethernet/arp.c +++ b/src/vnet/ethernet/arp.c @@ -2613,7 +2613,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); |