diff options
author | David Lamparter <equinox@diac24.net> | 2021-02-21 06:54:16 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:18:39 +0100 |
commit | 960b9a53837d1aefa16bd531c7087f800dbe147b (patch) | |
tree | 0b007330e6ed75d4e8674063a360b646d895d282 /lib/debug.c | |
parent | *: require semicolon after DEFINE_QOBJ & co. (diff) | |
download | frr-960b9a53837d1aefa16bd531c7087f800dbe147b.tar.xz frr-960b9a53837d1aefa16bd531c7087f800dbe147b.zip |
*: require semicolon after DEFINE_<typesafe...>
Again, see previous commits.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib/debug.c')
-rw-r--r-- | lib/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.c b/lib/debug.c index 3248ceb13..e2ba4cd4e 100644 --- a/lib/debug.c +++ b/lib/debug.c @@ -24,7 +24,7 @@ static struct debug_cb_list_head cb_head; -DECLARE_LIST(debug_cb_list, struct debug_callbacks, item) +DECLARE_LIST(debug_cb_list, struct debug_callbacks, item); /* All code in this section should be reentrant and MT-safe */ |