diff options
author | Neale Ranns <nranns@cisco.com> | 2017-04-11 08:56:53 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-04-11 20:35:42 +0000 |
commit | 9f171f5e20d4f30316626987a3dc66c9730e6d73 (patch) | |
tree | 93f80b2447f90f7f94289bf14e0568a8fca550e8 /src/vnet/mpls | |
parent | f060930e7f71bde107dc8f07c8693e2b3df99c46 (diff) |
MPLS Mcast coverity fixes
Change-Id: Ic07ec5d4c2560a414d5f4f7eb37e10faf591664a
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/mpls')
-rw-r--r-- | src/vnet/mpls/mpls_tunnel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/mpls/mpls_tunnel.h b/src/vnet/mpls/mpls_tunnel.h index 0b55d0dbe3d..ec0729a0f91 100644 --- a/src/vnet/mpls/mpls_tunnel.h +++ b/src/vnet/mpls/mpls_tunnel.h @@ -34,7 +34,7 @@ typedef enum mpls_tunnel_attribute_t_ } #define FOR_EACH_MPLS_TUNNEL_ATTRIBUTE(_item) \ for (_item = MPLS_TUNNEL_ATTRIBUTE_FIRST; \ - _item < MPLS_TUNNEL_ATTRIBUTE_LAST; \ + _item <= MPLS_TUNNEL_ATTRIBUTE_LAST; \ _item++) typedef enum mpls_tunnel_flag_t_ { |