test/eventdev: fix build with gcc 7

GCC flags an uninitialized value, so provide an initializer.

Fixes: 3a17ff401f ("test/eventdev: add basic SW tests")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Bruce Richardson 2017-05-04 16:38:22 +01:00 committed by Thomas Monjalon
parent f4e6ff881f
commit 4da724ace6

View File

@ -2526,7 +2526,7 @@ parallel_basic(struct test *t, int check_order)
int i;
uint32_t deq_pkts, j;
struct rte_mbuf *mbufs[3];
struct rte_mbuf *mbufs_out[3];
struct rte_mbuf *mbufs_out[3] = { 0 };
const uint32_t MAGIC_SEQN = 1234;
/* Create instance with 4 ports */