From a2addae8fe172f04f4d8ac99aa123a7d2dd64604 Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Fri, 15 Sep 2017 12:47:35 -0300 Subject: *: use clang's 'ForEachMacros' format style option This fixes the broken indentation of several foreach loops throughout the code. From clang's documentation[1]: ForEachMacros: A vector of macros that should be interpreted as foreach loops instead of as function calls. [1] http://clang.llvm.org/docs/ClangFormatStyleOptions.html Signed-off-by: Renato Westphal --- zebra/zebra_rnh.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'zebra/zebra_rnh.c') diff --git a/zebra/zebra_rnh.c b/zebra/zebra_rnh.c index 77cfa9860..4bc9caca5 100644 --- a/zebra/zebra_rnh.c +++ b/zebra/zebra_rnh.c @@ -405,8 +405,7 @@ static struct route_entry *zebra_rnh_resolve_entry(vrf_id_t vrfid, int family, re = NULL; else { /* Identify appropriate route entry. */ - RNODE_FOREACH_RE(rn, re) - { + RNODE_FOREACH_RE (rn, re) { if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED)) continue; if (!CHECK_FLAG(re->status, ROUTE_ENTRY_SELECTED_FIB)) @@ -578,8 +577,7 @@ static void zebra_rnh_process_static_routes(vrf_id_t vrfid, int family, /* Evaluate each static route associated with this nexthop. */ for (ALL_LIST_ELEMENTS_RO(rnh->zebra_static_route_list, node, static_rn)) { - RNODE_FOREACH_RE(static_rn, sre) - { + RNODE_FOREACH_RE (static_rn, sre) { if (sre->type != ZEBRA_ROUTE_STATIC) continue; -- cgit v1.2.3