diff options
author | Damjan Marion <damarion@cisco.com> | 2020-12-13 21:47:40 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-12-14 12:14:21 +0000 |
commit | b2c31b685fd2cf28436ca32bc93e23eb24c74878 (patch) | |
tree | dc0a1b1ff784445b2cbb0f9b2c07b5bcb4f5a5d0 /src/plugins/vrrp/vrrp_cli.c | |
parent | 62c25abaa3e93be5815172d391295a6ab0390122 (diff) |
misc: move to new pool_foreach macros
Type: refactor
Change-Id: Ie67dc579e88132ddb1ee4a34cb69f96920101772
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/vrrp/vrrp_cli.c')
-rw-r--r-- | src/plugins/vrrp/vrrp_cli.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/plugins/vrrp/vrrp_cli.c b/src/plugins/vrrp/vrrp_cli.c index 447b4749a28..a154a11a8fa 100644 --- a/src/plugins/vrrp/vrrp_cli.c +++ b/src/plugins/vrrp/vrrp_cli.c @@ -196,15 +196,14 @@ vrrp_show_vr_command_fn (vlib_main_t * vm, break; } - pool_foreach (vr, vmp->vrs, ( - { - - if (sw_if_index && (sw_if_index != ~0) && - (sw_if_index != vr->config.sw_if_index)) - continue; - vlib_cli_output (vm, "%U", format_vrrp_vr, - vr);} - )); + pool_foreach (vr, vmp->vrs) + { + + if (sw_if_index && (sw_if_index != ~0) && + (sw_if_index != vr->config.sw_if_index)) + continue; + vlib_cli_output (vm, "%U", format_vrrp_vr, vr); + } return 0; } |