diff options
author | Reuben Dowle <reuben.dowle@4rf.com> | 2021-04-01 03:28:25 +0200 |
---|---|---|
committer | Reuben Dowle <reuben.dowle@4rf.com> | 2021-04-05 23:23:42 +0200 |
commit | c2bb9917b1f44bee00bb5e5361ab6e9e03861a69 (patch) | |
tree | e059e7b20b9d31dd0a5036160088909b3c7055ce /nhrpd/nhrp_multicast.c | |
parent | nhrpd: Add missing semicolon (diff) | |
download | frr-c2bb9917b1f44bee00bb5e5361ab6e9e03861a69.tar.xz frr-c2bb9917b1f44bee00bb5e5361ab6e9e03861a69.zip |
nhrpd: Fix style issues
Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com>
Diffstat (limited to 'nhrpd/nhrp_multicast.c')
-rw-r--r-- | nhrpd/nhrp_multicast.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nhrpd/nhrp_multicast.c b/nhrpd/nhrp_multicast.c index 3df91492a..93e92e79b 100644 --- a/nhrpd/nhrp_multicast.c +++ b/nhrpd/nhrp_multicast.c @@ -134,8 +134,9 @@ static void netlink_mcast_log_handler(struct nlmsghdr *msg, struct zbuf *zb) if (!ctx.ifp) return; - debugf(NHRP_DEBUG_COMMON, "Intercepted multicast packet leaving %s len %zu", - ctx.ifp->name, zbuf_used(ctx.pkt)); + debugf(NHRP_DEBUG_COMMON, + "Intercepted multicast packet leaving %s len %zu", + ctx.ifp->name, zbuf_used(ctx.pkt)); for (afi = 0; afi < AFI_MAX; afi++) { nhrp_multicast_foreach(ctx.ifp, afi, nhrp_multicast_forward, |