From: Donald Sharp Date: Wed, 5 Apr 2017 23:26:57 +0000 (-0400) Subject: eigrpd: Cleanup long line X-Git-Tag: reindent-master-before~197^2~21 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=7aeab9b53a559064ae7e3f23ca1ff1c4a91835d3;p=mirror%2Ffrr.git eigrpd: Cleanup long line Signed-off-by: Donald Sharp --- 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;