diff options
author | David Lamparter <equinox@diac24.net> | 2021-02-21 06:33:45 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:18:17 +0100 |
commit | 8451921b70044a2c1075e7ba391f095fabee2550 (patch) | |
tree | b624fd822ce8e1c74840796b3c91a3a747b9e9ba /zebra/zebra_pw.c | |
parent | *: require semicolon after DEFINE_MTYPE & co (diff) | |
download | frr-8451921b70044a2c1075e7ba391f095fabee2550.tar.xz frr-8451921b70044a2c1075e7ba391f095fabee2550.zip |
*: require semicolon after DEFINE_HOOK & co.
See previous commit.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'zebra/zebra_pw.c')
-rw-r--r-- | zebra/zebra_pw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_pw.c b/zebra/zebra_pw.c index c951fcfe7..c402f4326 100644 --- a/zebra/zebra_pw.c +++ b/zebra/zebra_pw.c @@ -39,8 +39,8 @@ DEFINE_MTYPE_STATIC(LIB, PW, "Pseudowire"); DEFINE_QOBJ_TYPE(zebra_pw) -DEFINE_HOOK(pw_install, (struct zebra_pw * pw), (pw)) -DEFINE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw)) +DEFINE_HOOK(pw_install, (struct zebra_pw * pw), (pw)); +DEFINE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw)); #define MPLS_NO_LABEL MPLS_INVALID_LABEL |