diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2017-09-15 17:47:35 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2017-09-15 19:53:46 +0200 |
commit | a2addae8fe172f04f4d8ac99aa123a7d2dd64604 (patch) | |
tree | c58663b6654a9bec64ac4c26e11d158fd48b34ad /pimd/pim_bfd.c | |
parent | Merge pull request #1178 from donaldsharp/pim_obfuscation (diff) | |
download | frr-a2addae8fe172f04f4d8ac99aa123a7d2dd64604.tar.xz frr-a2addae8fe172f04f4d8ac99aa123a7d2dd64604.zip |
*: 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 <renato@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_bfd.c')
-rw-r--r-- | pimd/pim_bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_bfd.c b/pimd/pim_bfd.c index bba26662b..314162c78 100644 --- a/pimd/pim_bfd.c +++ b/pimd/pim_bfd.c @@ -300,7 +300,7 @@ static int pim_bfd_nbr_replay(int command, struct zclient *zclient, /* Send the client registration */ bfd_client_sendmsg(zclient, ZEBRA_BFD_CLIENT_REGISTER); - RB_FOREACH(vrf, vrf_name_head, &vrfs_by_name) { + RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) { for (ALL_LIST_ELEMENTS_RO(vrf_iflist(vrf->vrf_id), node, ifp)) { pim_ifp = ifp->info; |