diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-05-08 15:07:42 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-05-08 15:07:42 +0200 |
commit | 8998807f699d70be3ac137094550533226f32db8 (patch) | |
tree | 670f23be3f1b0a1d0b565fba974c19a1d5f19a9c /zebra/zebra_vxlan.c | |
parent | Merge pull request #11145 from donaldsharp/bgp_capability (diff) | |
download | frr-8998807f699d70be3ac137094550533226f32db8.tar.xz frr-8998807f699d70be3ac137094550533226f32db8.zip |
*: Avoid casting to the same type as on the left
Just not necessary.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to '')
-rw-r--r-- | zebra/zebra_vxlan.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index d883336f0..020ff6f3c 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -1078,9 +1078,7 @@ static int zevpn_build_hash_table_zns(struct ns *ns, static void zevpn_build_hash_table(void) { - ns_walk_func(zevpn_build_hash_table_zns, - (void *)NULL, - (void **)NULL); + ns_walk_func(zevpn_build_hash_table_zns, NULL, NULL); } /* |