From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: pablo@netfilter.org, kaber@trash.net, kadlec@blackhole.kfki.hu
Cc: Mark Rustad <mark.d.rustad@intel.com>,
netfilter-devel@vger.kernel.org, coreteam@netfilter.org,
Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Subject: [nf-next 2/2] netfilter: Resolve missing-field-initializers warnings
Date: Tue, 5 Aug 2014 04:56:22 -0700 [thread overview]
Message-ID: <1407239782-14078-2-git-send-email-jeffrey.t.kirsher@intel.com> (raw)
In-Reply-To: <1407239782-14078-1-git-send-email-jeffrey.t.kirsher@intel.com>
From: Mark Rustad <mark.d.rustad@intel.com>
Resolve missing-field-initializers warnings by avoiding
implicit inner field initializer. The more explicit form
avoids the warning.
Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
---
net/netfilter/xt_set.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/netfilter/xt_set.c b/net/netfilter/xt_set.c
index 80c2e2d..2671cc2 100644
--- a/net/netfilter/xt_set.c
+++ b/net/netfilter/xt_set.c
@@ -43,7 +43,7 @@ struct ip_set_adt_opt n = { \
.dim = d, \
.flags = fs, \
.cmdflags = cfs, \
- .ext.timeout = t, \
+ .ext = { .timeout = t } \
}
/* Revision 0 interface: backward compatible with netfilter/iptables */
--
1.9.3
prev parent reply other threads:[~2014-08-05 11:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-05 11:56 [nf-next 1/2] net/netfilter/ipset: Resolve missing-field-initializer warnings Jeff Kirsher
2014-08-05 11:56 ` Jeff Kirsher [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1407239782-14078-2-git-send-email-jeffrey.t.kirsher@intel.com \
--to=jeffrey.t.kirsher@intel.com \
--cc=coreteam@netfilter.org \
--cc=kaber@trash.net \
--cc=kadlec@blackhole.kfki.hu \
--cc=mark.d.rustad@intel.com \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).