mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 05:02:31 +00:00
rxrpc: Fix fall-through warnings for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning by explicitly adding a break statement instead of letting the code fall through to the next case. Link: https://github.com/KSPP/linux/issues/115 Reviewed-by: Jeffrey Altman <jaltman@auristor.com> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
This commit is contained in:
parent
0850bf2e5c
commit
40e67c1200
@ -471,6 +471,7 @@ static int rxrpc_connect(struct socket *sock, struct sockaddr *addr,
|
||||
switch (rx->sk.sk_state) {
|
||||
case RXRPC_UNBOUND:
|
||||
rx->sk.sk_state = RXRPC_CLIENT_UNBOUND;
|
||||
break;
|
||||
case RXRPC_CLIENT_UNBOUND:
|
||||
case RXRPC_CLIENT_BOUND:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user