From 29295538545a6b4229c849c4cb4e73b7f4422ea6 Mon Sep 17 00:00:00 2001 From: Tetsuya Mukawa Date: Fri, 27 Feb 2015 14:19:35 +0900 Subject: [PATCH] null: fix build with icc This patch fixes following errors with icc. rte_eth_null.c(47): error #83: type qualifier specified more than once Reported-by: John McNamara Signed-off-by: Tetsuya Mukawa Acked-by: John McNamara --- lib/librte_pmd_null/rte_eth_null.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_pmd_null/rte_eth_null.c b/lib/librte_pmd_null/rte_eth_null.c index bb102761fc..3ef58424e8 100644 --- a/lib/librte_pmd_null/rte_eth_null.c +++ b/lib/librte_pmd_null/rte_eth_null.c @@ -44,7 +44,7 @@ static unsigned default_packet_size = 64; static unsigned default_packet_copy; -static const char const *valid_arguments[] = { +static const char *valid_arguments[] = { ETH_NULL_PACKET_SIZE_ARG, ETH_NULL_PACKET_COPY_ARG, NULL -- 2.20.1