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 /ospf6d/ospf6_main.c | |
| parent | 960b9a53837d1aefa16bd531c7087f800dbe147b (diff) | |
*: require semicolon after FRR_DAEMON_INFO & co.
... again ...
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'ospf6d/ospf6_main.c')
| -rw-r--r-- | ospf6d/ospf6_main.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index 69424f4b46..c601693a7e 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -182,7 +182,8 @@ FRR_DAEMON_INFO(ospf6d, OSPF6, .vty_port = OSPF6_VTY_PORT,  		.n_signals = array_size(ospf6_signals),  		.privs = &ospf6d_privs, .yang_modules = ospf6d_yang_modules, -		.n_yang_modules = array_size(ospf6d_yang_modules), ) +		.n_yang_modules = array_size(ospf6d_yang_modules), +);  /* Main routine of ospf6d. Treatment of argument and starting ospf finite     state machine is handled here. */  | 
