net: rxrpc: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Wed, 9 Dec 2020 13:32:28 +0000 (21:32 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Dec 2020 00:23:07 +0000 (16:23 -0800)
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>
net/rxrpc/recvmsg.c

index 2c84285..fef3573 100644 (file)
@@ -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);