aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/recvmsg.c
diff options
context:
space:
mode:
authorZheng Yongjun <zhengyongjun3@huawei.com>2020-12-09 21:32:28 +0800
committerDavid S. Miller <davem@davemloft.net>2020-12-09 16:23:07 -0800
commita319aedde43c51a0db719f9a838eb2f177084401 (patch)
treeb42e1a2e9b25185ba731f1f8fe74886b05998635 /net/rxrpc/recvmsg.c
parentMerge branch 'macb-sama7g5' (diff)
downloadlinux-dev-a319aedde43c51a0db719f9a838eb2f177084401.tar.xz
linux-dev-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.c2
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);