diff options
author | 2018-12-20 04:22:42 +0800 | |
---|---|---|
committer | 2018-12-20 04:22:42 +0800 | |
commit | 06765d6bd4b3214d5b9c8a6fd9a596c51b7ddfac (patch) | |
tree | d4ef9818b1156bc2e78d7bd4464c9692d18eb03b /src/plugins/sc_interface.h | |
parent | 8ac7f6570ac93d80f53ec05a179cf42f8bb39630 (diff) |
Fix compiling issue
Change-Id: I441665fbc921bbf0840752d66af8e84a690a148c
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
Diffstat (limited to 'src/plugins/sc_interface.h')
-rw-r--r-- | src/plugins/sc_interface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/sc_interface.h b/src/plugins/sc_interface.h index f346565..682834e 100644 --- a/src/plugins/sc_interface.h +++ b/src/plugins/sc_interface.h @@ -16,7 +16,7 @@ #ifndef SC_INTERFACE_H #define SC_INTERFACE_H -#include "sc_vpp_operation.h" +#include "sc_vpp_comm.h" #include <vapi/interface.api.vapi.h> @@ -35,8 +35,8 @@ typedef struct _s_vpp_interface_ typedef struct _sc_sw_interface_dump_ctx { u8 last_called; - size_t num_ifs; - size_t capacity; + int num_ifs; + int capacity; scVppIntfc * intfcArray; } sc_sw_interface_dump_ctx; |