From 4882d2969542073ee630858bf6f67966aabb6c65 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Fri, 15 Nov 2019 11:09:17 +0200 Subject: [PATCH] bgpd: Add missing whitespace in update_subgroup_remove_peer_internal() Before the fix: 2019/11/14 19:52:21 BGP: peer 192.168.2.5 deleted from subgroup s4peer cnt 0 - missing space after s4 before peer Signed-off-by: Donatas Abraitis --- bgpd/bgp_updgrp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_updgrp.c b/bgpd/bgp_updgrp.c index 4b6af935e0..5f3f5cde9a 100644 --- a/bgpd/bgp_updgrp.c +++ b/bgpd/bgp_updgrp.c @@ -917,7 +917,7 @@ static void update_subgroup_remove_peer_internal(struct update_subgroup *subgrp, if (BGP_DEBUG(update_groups, UPDATE_GROUPS)) zlog_debug("peer %s deleted from subgroup s%" - PRIu64 "peer cnt %d", + PRIu64 " peer cnt %d", paf->peer->host, subgrp->id, subgrp->peer_count); SUBGRP_INCR_STAT(subgrp, prune_events); } -- 2.39.5