diff options
| author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-10-03 12:45:56 +0200 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2018-10-03 09:33:13 -0700 | 
| commit | 2cc543f5cd6deda27ef463686fa08c16c8c0990b (patch) | |
| tree | dffc7cca85b52e8145ab41ff3997807ff040956b | |
| parent | 9003b369499b3320d3f16145145b729fb6ff3bd4 (diff) | |
| download | blackbird-op-linux-2cc543f5cd6deda27ef463686fa08c16c8c0990b.tar.gz blackbird-op-linux-2cc543f5cd6deda27ef463686fa08c16c8c0990b.zip  | |
sctp: fix fall-through annotation
Replace "fallthru" with a proper "fall through" annotation.
This fix is part of the ongoing efforts to enabling
-Wimplicit-fallthrough
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/sctp/outqueue.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c index d74d00b29942..42191ed9902b 100644 --- a/net/sctp/outqueue.c +++ b/net/sctp/outqueue.c @@ -1048,7 +1048,7 @@ static void sctp_outq_flush_data(struct sctp_flush_ctx *ctx,  		if (!ctx->packet || !ctx->packet->has_cookie_echo)  			return; -		/* fallthru */ +		/* fall through */  	case SCTP_STATE_ESTABLISHED:  	case SCTP_STATE_SHUTDOWN_PENDING:  	case SCTP_STATE_SHUTDOWN_RECEIVED:  | 

