diff options
author | Neale Ranns <nranns@cisco.com> | 2017-09-11 10:34:33 -0700 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2017-09-11 19:19:56 +0000 |
commit | 6b3a8eff76f27f2b919887582006b2290d12ecfa (patch) | |
tree | 266d4ac19b4aedb552754a903c79a88f8e42d62f /src/vnet/mpls/mpls.h | |
parent | 2d3dbc45d633c5c2cb1bc4e1f544491e3173f001 (diff) |
replace uint32_t with u32
Change-Id: I6cab79c266837a8731adcf78c9e093dfa6be0ead
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/mpls/mpls.h')
-rw-r--r-- | src/vnet/mpls/mpls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/mpls/mpls.h b/src/vnet/mpls/mpls.h index 31cb1746f71..8dd92887c7d 100644 --- a/src/vnet/mpls/mpls.h +++ b/src/vnet/mpls/mpls.h @@ -98,7 +98,7 @@ mpls_fib_index_cmp(void * a1, void * a2); int mpls_label_cmp(void * a1, void * a2); -void mpls_table_create(uint32_t table_id, u8 is_api); -void mpls_table_delete(uint32_t table_id, u8 is_api); +void mpls_table_create(u32 table_id, u8 is_api); +void mpls_table_delete(u32 table_id, u8 is_api); #endif /* included_vnet_mpls_h */ |