From a1ff01e5c91cadc3d95060aa1ca4b9faa6fa2f49 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 9 Jul 2018 09:56:32 -0700 Subject: new pipe code does not use stdints Change-Id: Idee565af852c7bb434b886fbf31c6e76315686c4 Signed-off-by: Neale Ranns --- src/vnet/devices/pipe/pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vnet/devices/pipe') 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, }; -- cgit 1.2.3-korg