diff options
author | Neale Ranns <nranns@cisco.com> | 2020-01-01 21:55:41 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-01-01 21:55:41 +0000 |
commit | 306c3080d9276d020cee2cb70404a1e7d9032eb0 (patch) | |
tree | c2888cf0c3e2ded877621ccb33dc364d4ed61745 /src | |
parent | fca3c6a3aa43c71250b33d0a6755ea1ae4ae2bd1 (diff) |
ip: indent format typo fix
Type: style
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: Idfcd4a363d4582ce69fac83ddc760f2dc4feed52
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/ip/ip6_link.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/vnet/ip/ip6_link.c b/src/vnet/ip/ip6_link.c index b73fbe2125f..35b718e6dcb 100644 --- a/src/vnet/ip/ip6_link.c +++ b/src/vnet/ip/ip6_link.c @@ -245,14 +245,12 @@ ip6_link_delegate_flush (ip6_link_t * il) { ip6_link_delegate_t *ild; - /* *INDET-OFF* */ - FOREACH_IP6_LINK_DELEGATE (ild, il, ( - { - il_delegate_vfts[ild-> - ild_type].ildv_disable - (ild->ild_index); - })); - /* *INDET-ON* */ + /* *INDENT-OFF* */ + FOREACH_IP6_LINK_DELEGATE (ild, il, + ({ + il_delegate_vfts[ild->ild_type].ildv_disable(ild->ild_index); + })); + /* *INDENT-ON* */ vec_free (il->il_delegates); il->il_delegates = NULL; |