Re: [dpdk-dev] [PATCH v2] eal: remove variable length array

2018-12-15 Thread Wiles, Keith
> On Dec 14, 2018, at 2:40 PM, Jeff Shaw wrote: > > Compilers that do not support the C99 standard, or do not implement > gcc extensions, may not support variable length arrays. > > The code prior to this commit produced the following warning when > compiled with "-Wvla -std=c90". > > warnin

[dpdk-dev] [PATCH v2] eal: remove variable length array

2018-12-14 Thread Jeff Shaw
Compilers that do not support the C99 standard, or do not implement gcc extensions, may not support variable length arrays. The code prior to this commit produced the following warning when compiled with "-Wvla -std=c90". warning: ISO C90 forbids variable length array ‘array’ [-Wvla] This comm