exp: fix a GCC 6 -Wmisleading-indentation warning

Replaced the spaces by tabs to fix it.

Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
Peter Wu 2016-08-08 11:58:52 +02:00 committed by Thomas Haller
parent f1029d44be
commit daaa2c5cb1

View File

@ -357,10 +357,10 @@ static int nfnl_exp_build_tuple(struct nl_msg *msg, const struct nfnl_exp *exp,
int type = exp_get_tuple_attr(cta); int type = exp_get_tuple_attr(cta);
if (cta == CTA_EXPECT_NAT) if (cta == CTA_EXPECT_NAT)
tuple = nla_nest_start(msg, CTA_EXPECT_NAT_TUPLE); tuple = nla_nest_start(msg, CTA_EXPECT_NAT_TUPLE);
else else
tuple = nla_nest_start(msg, cta); tuple = nla_nest_start(msg, cta);
if (!tuple) if (!tuple)
goto nla_put_failure; goto nla_put_failure;