From: Tetsuya Mukawa Date: Fri, 27 Feb 2015 05:19:35 +0000 (+0900) Subject: null: fix build with icc X-Git-Tag: spdx-start~9517 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=29295538545a6b4229c849c4cb4e73b7f4422ea6;p=dpdk.git 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 --- 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