net: Fix coding style in skb_push()
Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
453e9dc48b
commit
9aba2f801e
|
@ -1715,7 +1715,7 @@ void *skb_push(struct sk_buff *skb, unsigned int len)
|
|||
{
|
||||
skb->data -= len;
|
||||
skb->len += len;
|
||||
if (unlikely(skb->data<skb->head))
|
||||
if (unlikely(skb->data < skb->head))
|
||||
skb_under_panic(skb, len, __builtin_return_address(0));
|
||||
return skb->data;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue