misc: move to new pool_foreach macros

Type: refactor
Change-Id: Ie67dc579e88132ddb1ee4a34cb69f96920101772
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2020-12-13 21:47:40 +01:00
committed by Dave Barach
parent 62c25abaa3
commit b2c31b685f
228 changed files with 1395 additions and 1441 deletions

View File

@ -240,10 +240,10 @@ show_flow_entry (vlib_main_t * vm, unformat_input_t * input,
no_args:
/* *INDENT-OFF* */
pool_foreach (f, fm->global_flow_pool,
pool_foreach (f, fm->global_flow_pool)
{
vlib_cli_output (vm, "%U\n", format_flow, f);
});
}
/* *INDENT-ON* */
return 0;