Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5eb358d0 authored by Silviu-Mihai Popescu's avatar Silviu-Mihai Popescu Committed by Pablo Neira Ayuso
Browse files

bridge: netfilter: use PTR_RET instead of IS_ERR + PTR_ERR



This uses PTR_RET instead of IS_ERR and PTR_ERR in order to increase
readability.

Signed-off-by: default avatarSilviu-Mihai Popescu <silviupopescu1990@gmail.com>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 015ba03c
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -64,9 +64,7 @@ static int ebt_broute(struct sk_buff *skb)
static int __net_init broute_net_init(struct net *net)
static int __net_init broute_net_init(struct net *net)
{
{
	net->xt.broute_table = ebt_register_table(net, &broute_table);
	net->xt.broute_table = ebt_register_table(net, &broute_table);
	if (IS_ERR(net->xt.broute_table))
	return PTR_RET(net->xt.broute_table);
		return PTR_ERR(net->xt.broute_table);
	return 0;
}
}


static void __net_exit broute_net_exit(struct net *net)
static void __net_exit broute_net_exit(struct net *net)