diff options
author | David Lamparter <equinox@diac24.net> | 2021-02-21 07:07:15 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:18:39 +0100 |
commit | 80413c2073a20774b264ab04f7a4ea4515699790 (patch) | |
tree | 7902d0a3503de17d469f5dd8fafefbe1df5583c6 /eigrpd | |
parent | *: require semicolon after DEFINE_<typesafe...> (diff) | |
download | frr-80413c2073a20774b264ab04f7a4ea4515699790.tar.xz frr-80413c2073a20774b264ab04f7a4ea4515699790.zip |
*: require semicolon after FRR_DAEMON_INFO & co.
... again ...
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'eigrpd')
-rw-r--r-- | eigrpd/eigrp_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eigrpd/eigrp_main.c b/eigrpd/eigrp_main.c index b1a6498cb..0ed7e9496 100644 --- a/eigrpd/eigrp_main.c +++ b/eigrpd/eigrp_main.c @@ -155,7 +155,8 @@ FRR_DAEMON_INFO(eigrpd, EIGRP, .vty_port = EIGRP_VTY_PORT, .n_signals = array_size(eigrp_signals), .privs = &eigrpd_privs, .yang_modules = eigrpd_yang_modules, - .n_yang_modules = array_size(eigrpd_yang_modules), ) + .n_yang_modules = array_size(eigrpd_yang_modules), +); /* EIGRPd main routine. */ int main(int argc, char **argv, char **envp) |