diff options
author | Zheng Yongjun <zhengyongjun3@huawei.com> | 2020-12-09 14:32:28 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-12-10 01:23:07 +0100 |
commit | a319aedde43c51a0db719f9a838eb2f177084401 (patch) | |
tree | b42e1a2e9b25185ba731f1f8fe74886b05998635 /net/rxrpc/recvmsg.c | |
parent | Merge branch 'macb-sama7g5' (diff) | |
download | linux-a319aedde43c51a0db719f9a838eb2f177084401.tar.xz linux-a319aedde43c51a0db719f9a838eb2f177084401.zip |
net: rxrpc: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Reviewed-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | net/rxrpc/recvmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/recvmsg.c b/net/rxrpc/recvmsg.c index 2c842851d72e..fef3573fdc8b 100644 --- a/net/rxrpc/recvmsg.c +++ b/net/rxrpc/recvmsg.c @@ -69,7 +69,7 @@ bool __rxrpc_set_call_completion(struct rxrpc_call *call, if (call->state < RXRPC_CALL_COMPLETE) { call->abort_code = abort_code; call->error = error; - call->completion = compl, + call->completion = compl; call->state = RXRPC_CALL_COMPLETE; trace_rxrpc_call_complete(call); wake_up(&call->waitq); |