diff options
Diffstat (limited to 'src/vnet/session/transport_interface.h')
-rw-r--r-- | src/vnet/session/transport_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |