X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsession%2Ftransport_interface.h;h=a96c5e12d7a37ee161cd688e47a67511f25169e1;hb=de9a849a18514f0b09bb5f57a73f6a57ee425c76;hp=ec9bd43e30ff7237fc99685a392fb016db400062;hpb=fe7740e6613e065658dd43e4b8a81504ee7bb2ea;p=vpp.git diff --git a/src/vnet/session/transport_interface.h b/src/vnet/session/transport_interface.h index ec9bd43e30f..a96c5e12d7a 100644 --- a/src/vnet/session/transport_interface.h +++ b/src/vnet/session/transport_interface.h @@ -89,7 +89,7 @@ extern transport_proto_vft_t *tp_vfts; #define transport_proto_foreach(VAR, BODY) \ do { \ for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \ - if (tp_vfts[VAR].push_header != 0) \ + if (tp_vfts[VAR].push_header != 0) \ do { BODY; } while (0); \ } while (0)