[IPV4] UDP,UDPLITE: Sparse: {__udp4_lib,udp,udplite}_err() are of void.

Fix following sparse warnings:
| net/ipv4/udp.c:421:2: warning: returning void-valued expression
| net/ipv4/udplite.c:38:2: warning: returning void-valued expression

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
This commit is contained in:
YOSHIFUJI Hideaki 2008-01-22 17:05:31 +09:00 committed by David S. Miller
parent 583c28e564
commit fc80be87dc
2 changed files with 2 additions and 2 deletions

View File

@ -418,7 +418,7 @@ out:
void udp_err(struct sk_buff *skb, u32 info)
{
return __udp4_lib_err(skb, info, udp_hash);
__udp4_lib_err(skb, info, udp_hash);
}
/*

View File

@ -35,7 +35,7 @@ static int udplite_rcv(struct sk_buff *skb)
static void udplite_err(struct sk_buff *skb, u32 info)
{
return __udp4_lib_err(skb, info, udplite_hash);
__udp4_lib_err(skb, info, udplite_hash);
}
static struct net_protocol udplite_protocol = {