mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
raw: Fix mixed declarations error in raw_icmp_error().
The trailing semicolon causes a compiler error, so let's remove it.
net/ipv4/raw.c: In function ‘raw_icmp_error’:
net/ipv4/raw.c:266:2: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement]
266 | struct hlist_nulls_head *hlist;
| ^~~~~~
Fixes: ba44f8182e
("raw: use more conventional iterators")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9776fe0f42
commit
5da39e31b1
@ -262,7 +262,7 @@ static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
|
||||
|
||||
void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info)
|
||||
{
|
||||
struct net *net = dev_net(skb->dev);;
|
||||
struct net *net = dev_net(skb->dev);
|
||||
struct hlist_nulls_head *hlist;
|
||||
struct hlist_nulls_node *hnode;
|
||||
int dif = skb->dev->ifindex;
|
||||
|
Loading…
Reference in New Issue
Block a user