From d9e15f206840219bb0f39c912a42fdcf8cbcaed6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 27 Nov 2006 16:49:55 +0000 Subject: style cleanup: return(a) -> return a, part 2 --- networking/ping.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'networking/ping.c') 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 -- cgit v1.2.3