summaryrefslogtreecommitdiff
path: root/lib/northbound_sysrepo.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2021-02-21 07:07:15 +0100
committerDavid Lamparter <equinox@diac24.net>2021-03-17 06:18:39 +0100
commit80413c2073a20774b264ab04f7a4ea4515699790 (patch)
tree7902d0a3503de17d469f5dd8fafefbe1df5583c6 /lib/northbound_sysrepo.c
parent960b9a53837d1aefa16bd531c7087f800dbe147b (diff)
*: require semicolon after FRR_DAEMON_INFO & co.
... again ... Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib/northbound_sysrepo.c')
-rw-r--r--lib/northbound_sysrepo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/northbound_sysrepo.c b/lib/northbound_sysrepo.c
index 1c71312ac8..9fc640ceea 100644
--- a/lib/northbound_sysrepo.c
+++ b/lib/northbound_sysrepo.c
@@ -768,4 +768,5 @@ static int frr_sr_module_init(void)
FRR_MODULE_SETUP(.name = "frr_sysrepo", .version = FRR_VERSION,
.description = "FRR sysrepo integration module",
- .init = frr_sr_module_init, )
+ .init = frr_sr_module_init,
+);