diff options
author | David Lamparter <equinox@diac24.net> | 2021-02-21 06:38:13 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:18:37 +0100 |
commit | 96244aca23adec551c29b78f26605f8af8eea53e (patch) | |
tree | 1f4b4216f3a73e5bddffa2898495a74b2992af0f /zebra/zebra_pw.h | |
parent | *: require semicolon after DEFINE_HOOK & co. (diff) | |
download | frr-96244aca23adec551c29b78f26605f8af8eea53e.tar.xz frr-96244aca23adec551c29b78f26605f8af8eea53e.zip |
*: require semicolon after DEFINE_QOBJ & co.
Again, see previous commits.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'zebra/zebra_pw.h')
-rw-r--r-- | zebra/zebra_pw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_pw.h b/zebra/zebra_pw.h index 19f0f8181..0da820380 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); |