mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +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
1 changed files with 1 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue