RE: [PATCH] common/iavf: replace zero-length arrays with flexible ones

2022-06-28 Thread Zhang, Qi Z
> -Original Message- > From: 835703...@qq.com <835703...@qq.com> > Sent: Thursday, June 16, 2022 1:26 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Shiqi Liu <835703...@qq.com> > Subject: [PATCH] common/iavf: replace zero-length arrays with flexible one

[PATCH] common/iavf: replace zero-length arrays with flexible ones

2022-06-15 Thread 835703180
From: Shiqi Liu <835703...@qq.com> This patch replaces instances of zero-sized arrays i.e. those at the end of structures with "[0]" with the more standard syntax of "[]". Replacement was done using coccinelle script, with some revert and cleanup of whitespace afterwards. Signed-o