summaryrefslogtreecommitdiff
path: root/zebra
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2021-02-21 06:38:13 +0100
committerDavid Lamparter <equinox@diac24.net>2021-03-17 06:18:37 +0100
commit96244aca23adec551c29b78f26605f8af8eea53e (patch)
tree1f4b4216f3a73e5bddffa2898495a74b2992af0f /zebra
parent8451921b70044a2c1075e7ba391f095fabee2550 (diff)
*: require semicolon after DEFINE_QOBJ & co.
Again, see previous commits. Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'zebra')
-rw-r--r--zebra/zebra_pw.c2
-rw-r--r--zebra/zebra_pw.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/zebra/zebra_pw.c b/zebra/zebra_pw.c
index c402f43265..5afb3e5926 100644
--- a/zebra/zebra_pw.c
+++ b/zebra/zebra_pw.c
@@ -37,7 +37,7 @@
DEFINE_MTYPE_STATIC(LIB, PW, "Pseudowire");
-DEFINE_QOBJ_TYPE(zebra_pw)
+DEFINE_QOBJ_TYPE(zebra_pw);
DEFINE_HOOK(pw_install, (struct zebra_pw * pw), (pw));
DEFINE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw));
diff --git a/zebra/zebra_pw.h b/zebra/zebra_pw.h
index 19f0f8181b..0da8203802 100644
--- a/zebra/zebra_pw.h
+++ b/zebra/zebra_pw.h
@@ -53,9 +53,9 @@ struct zebra_pw {
struct zserv *client;
struct rnh *rnh;
struct thread *install_retry_timer;
- QOBJ_FIELDS
+ QOBJ_FIELDS;
};
-DECLARE_QOBJ_TYPE(zebra_pw)
+DECLARE_QOBJ_TYPE(zebra_pw);
RB_HEAD(zebra_pw_head, zebra_pw);
RB_PROTOTYPE(zebra_pw_head, zebra_pw, pw_entry, zebra_pw_compare);