You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Fix ipv4/igmp.c compile with gcc-4 and IP_MULTICAST
Modern versions of gcc do not like case statements at the end of a block statement: you need at least an empty statement. Using just a "break;" is preferred for visual style. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
@@ -970,6 +970,7 @@ int igmp_rcv(struct sk_buff *skb)
|
||||
case IGMP_MTRACE_RESP:
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
drop:
|
||||
|
||||
Reference in New Issue
Block a user