diff options
author | Miaohe Lin <linmiaohe@huawei.com> | 2020-08-29 11:21:30 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-08-31 21:33:34 +0200 |
commit | 5af68891dc16e1c8216705034a5e0144fd47779a (patch) | |
tree | a4b38a00fc4cd849aef3a975f4d26c315d58a78e /net/ipv4/ip_output.c | |
parent | net: Use helper macro IP_MAX_MTU in __ip_append_data() (diff) | |
download | linux-5af68891dc16e1c8216705034a5e0144fd47779a.tar.xz linux-5af68891dc16e1c8216705034a5e0144fd47779a.zip |
net: clean up codestyle
This is a pure codestyle cleanup patch. No functional change intended.
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r-- | net/ipv4/ip_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index f0f234727547..b931d0b02e49 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -1536,7 +1536,7 @@ struct sk_buff *__ip_make_skb(struct sock *sk, ip_select_ident(net, skb, sk); if (opt) { - iph->ihl += opt->optlen>>2; + iph->ihl += opt->optlen >> 2; ip_options_build(skb, opt, cork->addr, rt, 0); } |