From 9fc1522cfbb0d87ed55d5c5f78eb82c84b81c9c8 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 12 Apr 2018 09:20:20 -0400 Subject: [PATCH] zebra: Cleanup lines over 80 columns Cleanup warnings in lines over 80 columns. Signed-off-by: Donald Sharp --- zebra/zebra_vxlan.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index b851ba41d5..6e901a0457 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -2005,7 +2005,8 @@ static int zvni_local_neigh_update(zebra_vni_t *zvni, ETH_ALEN) != 0) { old_zmac = zvni_mac_lookup(zvni, &n->emac); if (old_zmac) { - listnode_delete(old_zmac->neigh_list, n); + listnode_delete(old_zmac->neigh_list, + n); zvni_deref_ip2mac(zvni, old_zmac, 0); } @@ -2091,12 +2092,10 @@ static int zvni_remote_neigh_update(zebra_vni_t *zvni, */ zmac = zvni_mac_lookup(zvni, macaddr); if (!zmac || !CHECK_FLAG(zmac->flags, ZEBRA_MAC_REMOTE)) { - zlog_err( - "Ignore remote neigh %s (MAC %s) on L2-VNI %u " - "- MAC unknown or local", - ipaddr2str(&n->ip, buf2, sizeof(buf2)), - prefix_mac2str(macaddr, buf, sizeof(buf)), - zvni->vni); + zlog_err("Ignore remote neigh %s (MAC %s) on L2-VNI %u - MAC unknown or local", + ipaddr2str(&n->ip, buf2, sizeof(buf2)), + prefix_mac2str(macaddr, buf, sizeof(buf)), + zvni->vni); return -1; } -- 2.39.5