diff options
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2019-01-24 10:12:36 +0100 |
---|---|---|
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2019-01-24 11:21:59 +0100 |
commit | 4d762f2607f07b55f464bae4ec0eb7fdf7c656a9 (patch) | |
tree | c8e9c8056c9fec104ec152ccf254c282fa6a90c6 /zebra/zebra_vxlan.h | |
parent | Merge pull request #3508 from chiragshah6/evpn_dev2 (diff) | |
download | frr-4d762f2607f07b55f464bae4ec0eb7fdf7c656a9.tar.xz frr-4d762f2607f07b55f464bae4ec0eb7fdf7c656a9.zip |
Treewide: use ANSI function definitions
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
Diffstat (limited to '')
-rw-r--r-- | zebra/zebra_vxlan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_vxlan.h b/zebra/zebra_vxlan.h index c50664a28..c25e7357e 100644 --- a/zebra/zebra_vxlan.h +++ b/zebra/zebra_vxlan.h @@ -37,7 +37,7 @@ /* Is EVPN enabled? */ #define EVPN_ENABLED(zvrf) (zvrf)->advertise_all_vni -static inline int is_evpn_enabled() +static inline int is_evpn_enabled(void) { struct zebra_vrf *zvrf = NULL; zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT); @@ -45,7 +45,7 @@ static inline int is_evpn_enabled() } static inline int -is_vxlan_flooding_head_end() +is_vxlan_flooding_head_end(void) { struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT); |