From: Pedro Tammela Date: Thu, 6 Dec 2018 12:45:28 +0000 (-0200) Subject: tcp: fix code style in tcp_recvmsg() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fdb8b298676a39b660d10c6dcaaf5b702f811009;p=linux.git tcp: fix code style in tcp_recvmsg() 2 goto labels are indented with a tab. remove the tabs and keep the code style consistent. Signed-off-by: Pedro Tammela Acked-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index dc68c408bba09..27e2f68370623 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -2088,7 +2088,7 @@ int tcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int nonblock, } continue; - found_ok_skb: +found_ok_skb: /* Ok so how much can we use? */ used = skb->len - offset; if (len < used) @@ -2147,7 +2147,7 @@ skip_copy: sk_eat_skb(sk, skb); continue; - found_fin_ok: +found_fin_ok: /* Process the FIN. */ ++*seq; if (!(flags & MSG_PEEK))