diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2022-01-14 11:56:25 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-01-14 13:33:57 +0100 |
commit | 54929fd38a352bd8096383a7aa65cc89e0c8ab0c (patch) | |
tree | 3e3329dcf5951b154f01259c339cf2e91627cfe2 /lib/srcdest_table.c | |
parent | lib: add `%pTH` / `%pTHD` for printing thread info (diff) | |
download | frr-54929fd38a352bd8096383a7aa65cc89e0c8ab0c.tar.xz frr-54929fd38a352bd8096383a7aa65cc89e0c8ab0c.zip |
*: use semicolon after printfrr_ext_autoreg_{p,d}
Mostly to make clang-format not format these to peak ugly.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/srcdest_table.c')
-rw-r--r-- | lib/srcdest_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/srcdest_table.c b/lib/srcdest_table.c index d2e0682e9..828cf2cce 100644 --- a/lib/srcdest_table.c +++ b/lib/srcdest_table.c @@ -306,7 +306,7 @@ const char *srcdest_rnode2str(const struct route_node *rn, char *str, int size) return srcdest2str(dst_p, (const struct prefix_ipv6 *)src_p, str, size); } -printfrr_ext_autoreg_p("RN", printfrr_rn) +printfrr_ext_autoreg_p("RN", printfrr_rn); static ssize_t printfrr_rn(struct fbuf *buf, struct printfrr_eargs *ea, const void *ptr) { |