Skip to content

Commit b60d0e1

Browse files
author
Mark Stapp
committed
bgpd: fix weird formatting in a function
bgp table function had ... eccentric formatting, fix it Signed-off-by: Mark Stapp <[email protected]>
1 parent 4535900 commit b60d0e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bgpd/bgp_table.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ inline struct bgp_dest *bgp_dest_unlock_node(struct bgp_dest *dest)
101101
* bgp_node_destroy
102102
*/
103103
static void bgp_node_destroy(route_table_delegate_t *delegate,
104-
struct route_table *table, struct route_node *node)
104+
struct route_table *table, struct route_node *node)
105105
{
106106
struct bgp_dest *dest;
107107
struct bgp_table *rt;
@@ -110,8 +110,8 @@ static void bgp_node_destroy(route_table_delegate_t *delegate,
110110
if (dest) {
111111
if (rt->bgp) {
112112
bgp_addpath_free_node_data(&rt->bgp->tx_addpath,
113-
&dest->tx_addpath,
114-
rt->afi, rt->safi);
113+
&dest->tx_addpath,
114+
rt->afi, rt->safi);
115115
}
116116
XFREE(MTYPE_BGP_NODE, dest);
117117
node->info = NULL;

0 commit comments

Comments
 (0)