diff options
| author | Eric Dumazet <[email protected]> | 2010-09-22 20:43:57 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2010-09-23 21:33:39 +0000 |
| commit | a02cec2155fbea457eca8881870fd2de1a4c4c76 (patch) | |
| tree | cfbfc4b32bfe10f9cd803d46c31607d13f1858f5 /net/ipv6/tcp_ipv6.c | |
| parent | e1000: use GRO for receive (diff) | |
| download | kernel-a02cec2155fbea457eca8881870fd2de1a4c4c76.tar.gz kernel-a02cec2155fbea457eca8881870fd2de1a4c4c76.zip | |
net: return operator cleanup
Change "return (EXPR);" to "return EXPR;"
return is not a function, parentheses are not required.
Signed-off-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
| -rw-r--r-- | net/ipv6/tcp_ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index fe6d40418c0b..8d93f6d81979 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -139,7 +139,7 @@ static int tcp_v6_connect(struct sock *sk, struct sockaddr *uaddr, return -EINVAL; if (usin->sin6_family != AF_INET6) - return(-EAFNOSUPPORT); + return -EAFNOSUPPORT; memset(&fl, 0, sizeof(fl)); |
