Re: [dpdk-dev] [PATCH] test: fix compilation error in external memory test

2018-10-23 Thread Thomas Monjalon
17/10/2018 12:12, Burakov, Anatoly: > On 17-Oct-18 1:22 AM, Dan Gora wrote: > > Fix a compilation error in test_external_mem.c: > > > >CC test_external_mem.o > > test_external_mem.c: In function ‘test_external_mem’: > > test_external_mem.c:375:2: error: ‘for’ loop initial declarations are > >

Re: [dpdk-dev] [PATCH] test: fix compilation error in external memory test

2018-10-17 Thread Burakov, Anatoly
On 17-Oct-18 1:22 AM, Dan Gora wrote: Fix a compilation error in test_external_mem.c: CC test_external_mem.o test_external_mem.c: In function ‘test_external_mem’: test_external_mem.c:375:2: error: ‘for’ loop initial declarations are only allowed in C99 mode for

[dpdk-dev] [PATCH] test: fix compilation error in external memory test

2018-10-16 Thread Dan Gora
Fix a compilation error in test_external_mem.c: CC test_external_mem.o test_external_mem.c: In function ‘test_external_mem’: test_external_mem.c:375:2: error: ‘for’ loop initial declarations are only allowed in C99 mode for (int i = 0; i < n_pages; i++) { ^ test_e