diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:55 +0000 |
commit | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (patch) | |
tree | ffdef7f5ab4a33038d0a62c9355b48f362aa463e /networking/ping.c | |
parent | 079f8afa0a16112cbaf7012c82b38b7358b82141 (diff) |
style cleanup: return(a) -> return a, part 2
Diffstat (limited to 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ping.c b/networking/ping.c index fc01b5e1d..658c01518 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -65,7 +65,7 @@ static int in_cksum(unsigned short *buf, int sz) sum = (sum >> 16) + (sum & 0xFFFF); sum += (sum >> 16); ans = ~sum; - return (ans); + return ans; } #ifndef CONFIG_FEATURE_FANCY_PING |