beeed9d92a
Add script to replace [0] with [] when used at the end of a struct. The script also includes an additional struct member to match against so as to avoid issues with arrays with only a single zero-length element. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Morten Brørup <mb@smartsharesystems.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
22 lines
260 B
Plaintext
22 lines
260 B
Plaintext
// Replace zero-length array members with []
|
|
@@
|
|
identifier st, member, arr;
|
|
type T1, T2;
|
|
@@
|
|
struct st {
|
|
...
|
|
T1 member;
|
|
- T2 arr[0];
|
|
+ T2 arr[];
|
|
};
|
|
@@
|
|
identifier st, member, arr, id;
|
|
type T1, T2;
|
|
@@
|
|
struct st {
|
|
...
|
|
T1 member;
|
|
- T2 arr[0];
|
|
+ T2 arr[];
|
|
} id;
|