diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2021-05-09 19:37:12 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2021-05-09 19:37:12 +0200 |
commit | e20713259443fdc7134bb5e10c04496beb006321 (patch) | |
tree | 7fefc172499e3d6136ae7c05782ca945fd207fa0 /zebra/zebra_vxlan.c | |
parent | zebra: Reduce per vrf memory usage from hash table creation (diff) | |
download | frr-e20713259443fdc7134bb5e10c04496beb006321.tar.xz frr-e20713259443fdc7134bb5e10c04496beb006321.zip |
zebra: fix style warnings in previous commits
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to '')
-rw-r--r-- | zebra/zebra_vxlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index c816ba5a2..4e86ab3b4 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -5765,7 +5765,7 @@ void zebra_vxlan_init_tables(struct zebra_vrf *zvrf) snprintf(buffer, sizeof(buffer), "Zebra VxLAN SG Table: %s", zvrf->vrf->name); zvrf->vxlan_sg_table = hash_create_size(8, zebra_vxlan_sg_hash_key_make, - zebra_vxlan_sg_hash_eq, buffer); + zebra_vxlan_sg_hash_eq, buffer); } /* Cleanup EVPN info, but don't free the table. */ |