X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fudp%2Fudp_encap.c;h=28ea56050a69275681d14ce778b5bc01ce215a86;hb=b2c31b685fd2cf28436ca32bc93e23eb24c74878;hp=0b1d3d7125b1cef4f74ebcdb40679ff04a996542;hpb=62c25abaa3e93be5815172d391295a6ab0390122;p=vpp.git diff --git a/src/vnet/udp/udp_encap.c b/src/vnet/udp/udp_encap.c index 0b1d3d7125b..28ea56050a6 100644 --- a/src/vnet/udp/udp_encap.c +++ b/src/vnet/udp/udp_encap.c @@ -508,11 +508,11 @@ udp_encap_walk (udp_encap_walk_cb_t cb, void *ctx) index_t uei; /* *INDENT-OFF* */ - pool_foreach_index(uei, udp_encap_pool, - ({ + pool_foreach_index (uei, udp_encap_pool) + { if (WALK_STOP == cb(uei, ctx)) break; - })); + } /* *INDENT-ON* */ } @@ -537,10 +537,10 @@ udp_encap_show (vlib_main_t * vm, if (INDEX_INVALID == uei) { /* *INDENT-OFF* */ - pool_foreach_index(uei, udp_encap_pool, - ({ + pool_foreach_index (uei, udp_encap_pool) + { vlib_cli_output(vm, "%U", format_udp_encap, uei, 0); - })); + } /* *INDENT-ON* */ } else