Re: [dpdk-dev] [PATCH v2 4/7] app/procinfo: remove useless assignment

2020-11-18 Thread David Marchand
On Wed, Nov 18, 2020 at 12:47 PM Ferruh Yigit wrote: > > 'flag' is initialized to '0' but it is overwritten later, moving the > declaration where it is used and initialize with actual value. > > Fixes: 0101a0ec6217 ("app/procinfo: add --show-mempool") > Cc: sta...@dpdk.org > > Signed-off-by: Ferru

[dpdk-dev] [PATCH v2 4/7] app/procinfo: remove useless assignment

2020-11-18 Thread Ferruh Yigit
'flag' is initialized to '0' but it is overwritten later, moving the declaration where it is used and initialize with actual value. Fixes: 0101a0ec6217 ("app/procinfo: add --show-mempool") Cc: sta...@dpdk.org Signed-off-by: Ferruh Yigit --- app/proc-info/main.c | 4 +--- 1 file changed, 1 inser