From 7aeab9b53a559064ae7e3f23ca1ff1c4a91835d3 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 5 Apr 2017 19:26:57 -0400 Subject: [PATCH] eigrpd: Cleanup long line Signed-off-by: Donald Sharp --- eigrpd/eigrp_topology.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eigrpd/eigrp_topology.c b/eigrpd/eigrp_topology.c index ef0a5eb6ea..e5adcc4db5 100644 --- a/eigrpd/eigrp_topology.c +++ b/eigrpd/eigrp_topology.c @@ -460,7 +460,8 @@ eigrp_topology_update_node_flags(struct eigrp_prefix_entry *dest) for (ALL_LIST_ELEMENTS_RO(dest->entries, node, entry)) { - if ((entry->distance <= (u_int64_t)(dest->distance*eigrp->variance)) && entry->distance != EIGRP_MAX_METRIC) // is successor + if ((entry->distance <= (u_int64_t)(dest->distance*eigrp->variance)) && + entry->distance != EIGRP_MAX_METRIC) // is successor { entry->flags |= EIGRP_NEIGHBOR_ENTRY_SUCCESSOR_FLAG; entry->flags &= ~EIGRP_NEIGHBOR_ENTRY_FSUCCESSOR_FLAG; -- 2.39.5