Skip to content

Commit

Permalink
bridge: netfilter: use PTR_RET instead of IS_ERR + PTR_ERR
Browse files Browse the repository at this point in the history
This uses PTR_RET instead of IS_ERR and PTR_ERR in order to increase
readability.

Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
  • Loading branch information
Silviu-Mihai Popescu authored and Pablo Neira Ayuso committed Mar 15, 2013
1 parent 015ba03 commit 5eb358d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions net/bridge/netfilter/ebtable_broute.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ static int ebt_broute(struct sk_buff *skb)
static int __net_init broute_net_init(struct net *net)
{
net->xt.broute_table = ebt_register_table(net, &broute_table);
if (IS_ERR(net->xt.broute_table))
return PTR_ERR(net->xt.broute_table);
return 0;
return PTR_RET(net->xt.broute_table);
}

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

0 comments on commit 5eb358d

Please sign in to comment.