From ffe9d21b07ce4b607fd9a774df04f9f1f38eb197 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Wed, 30 May 2018 09:26:11 +0200 Subject: vppinfra: explicitely state for signed types that they are signed This fixes some compilation warnings with clang on AArch64. Change-Id: Idb941944e3f199f483c80e143a9e5163a031c4aa Signed-off-by: Damjan Marion --- src/plugins/dpdk/ipsec/crypto_node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/dpdk/ipsec/crypto_node.c') diff --git a/src/plugins/dpdk/ipsec/crypto_node.c b/src/plugins/dpdk/ipsec/crypto_node.c index 6b9ff58efcf..6c92e8fc5ba 100644 --- a/src/plugins/dpdk/ipsec/crypto_node.c +++ b/src/plugins/dpdk/ipsec/crypto_node.c @@ -63,7 +63,7 @@ static u8 * format_cryptodev_status (u8 * s, va_list * args) { u32 status = va_arg (*args, u32); - i8 *str = 0; + char *str = 0; switch (status) { -- cgit 1.2.3-korg