commit | 4987a474469d6c7c50ea2a8997cdd79f5059cb0c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Sep 12 20:56:41 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat Sep 12 20:56:41 2020 +0200 |
tree | b111331db17f618697d0a391c4b4ce09688b4dad | |
parent | e52b6e5456d82e8105a3cd18e4dfdccb776e319f [diff] |
CLEANUP: tree-wide: use VAR_ARRAY instead of [0] in various definitions Surprisingly there were still a number of [0] definitions for variable sized arrays in certain structures all over the code. We need to use VAR_ARRAY instead of zero to accommodate various compilers' preferences, as zero was used only on old ones and tends to report errors on new ones.