The latter is more compatible with older GCC versions like 4.9. Additionally, initializing with { 0 } produces a warning that only the first field was initialized.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
struct blob_attr *msg)
{
struct client *cl;
- struct blob_attr *tb[__READ_MAX] = { 0 };
+ struct blob_attr *tb[__READ_MAX] = {};
struct log_head *l;
int count = 0;
int fds[2];
validate_option(struct uci_context *ctx, char *package, char *section, char *option)
{
char *opt, *expr, *def;
- struct uci_ptr ptr = { 0 };
+ struct uci_ptr ptr = {};
if (!parse_tuple(option, &opt, &expr, &def))
{