]> git.puffer.fish Git - mirror/frr.git/commitdiff
lib: remove extra top-level ;
authorDavid Lamparter <equinox@opensourcerouting.org>
Mon, 11 Feb 2019 10:40:19 +0000 (11:40 +0100)
committerRenato Westphal <renato@opensourcerouting.org>
Mon, 11 Feb 2019 17:49:49 +0000 (15:49 -0200)
Signed-off-by: David Lamparter <equinox@diac24.net>
lib/if.h

index 5b46ed820462db746164896767af1b66193fc32b..822dbbaa5443bb601a74fe40c636e2d1765b5c7e 100644 (file)
--- a/lib/if.h
+++ b/lib/if.h
@@ -290,9 +290,9 @@ struct interface {
 };
 
 RB_HEAD(if_name_head, interface);
-RB_PROTOTYPE(if_name_head, interface, name_entry, if_cmp_func);
+RB_PROTOTYPE(if_name_head, interface, name_entry, if_cmp_func)
 RB_HEAD(if_index_head, interface);
-RB_PROTOTYPE(if_index_head, interface, index_entry, if_cmp_func);
+RB_PROTOTYPE(if_index_head, interface, index_entry, if_cmp_func)
 DECLARE_QOBJ_TYPE(interface)
 
 #define IFNAME_RB_INSERT(vrf, ifp)                                             \