diff options
author | Neale Ranns <nranns@cisco.com> | 2018-07-09 09:56:32 -0700 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-07-09 18:41:16 +0000 |
commit | a1ff01e5c91cadc3d95060aa1ca4b9faa6fa2f49 (patch) | |
tree | d11cf60048ad04ff855f8a82458e4ccc2c5c5cc2 /src | |
parent | 999a0a41999caa8317aa787165cbb5dab9f5779d (diff) |
new pipe code does not use stdints
Change-Id: Idee565af852c7bb434b886fbf31c6e76315686c4
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/devices/pipe/pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/devices/pipe/pipe.c b/src/vnet/devices/pipe/pipe.c index 29f54e19917..aea766a71fd 100644 --- a/src/vnet/devices/pipe/pipe.c +++ b/src/vnet/devices/pipe/pipe.c @@ -522,7 +522,7 @@ pipe_instance_free (u32 instance) static clib_error_t * pipe_create_sub_interface (vnet_hw_interface_t * hi, - uint32_t sub_id, u32 * sw_if_index) + u32 sub_id, u32 * sw_if_index) { vnet_sw_interface_t template; @@ -543,7 +543,7 @@ vnet_create_pipe_interface (u8 is_specified, { vnet_main_t *vnm = vnet_get_main (); vlib_main_t *vm = vlib_get_main (); - uint8_t address[6] = { + u8 address[6] = { [0] = 0x22, [1] = 0x22, }; |