X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fct6%2Fct6.c;h=d569a7c3f5be557c4a407dd0d4b2936870571d0a;hb=b2c31b685fd2cf28436ca32bc93e23eb24c74878;hp=15fa44a5d45106df19326334a4a3270ea29dcb7c;hpb=62c25abaa3e93be5815172d391295a6ab0390122;p=vpp.git diff --git a/src/plugins/ct6/ct6.c b/src/plugins/ct6/ct6.c index 15fa44a5d45..d569a7c3f5b 100644 --- a/src/plugins/ct6/ct6.c +++ b/src/plugins/ct6/ct6.c @@ -322,10 +322,10 @@ show_ct6_command_fn_command_fn (vlib_main_t * vm, 0 /* pool */ , 0 /* header */ , verbose); /* *INDENT-OFF* */ - pool_foreach (s0, cmp->sessions[i], - ({ + pool_foreach (s0, cmp->sessions[i]) + { s = format (s, "%U", format_ct6_session, cmp, i, s0, verbose); - })); + } /* *INDENT-ON* */ } vlib_cli_output (cmp->vlib_main, "%v", s); @@ -431,10 +431,10 @@ test_ct6_command_fn_command_fn (vlib_main_t * vm, } /* *INDENT-OFF* */ - pool_foreach (s0, cmp->sessions[0], - ({ + pool_foreach (s0, cmp->sessions[0]) + { s = format (s, "%U", format_ct6_session, cmp, 0, s0, 1 /* verbose */); - })); + } /* *INDENT-ON* */ vlib_cli_output (vm, "\nEnd state: first index %d last index %d\n%v", @@ -451,10 +451,10 @@ test_ct6_command_fn_command_fn (vlib_main_t * vm, ct6_update_session_hit (cmp, s0, 234.0); /* *INDENT-OFF* */ - pool_foreach (s0, cmp->sessions[0], - ({ + pool_foreach (s0, cmp->sessions[0]) + { s = format (s, "%U", format_ct6_session, cmp, 0, s0, 1 /* verbose */); - })); + } /* *INDENT-ON* */ vlib_cli_output (vm, "\nEnd state: first index %d last index %d\n%v",