diff options
author | 2021-05-26 16:44:21 +0900 | |
---|---|---|
committer | 2021-05-26 18:13:41 +0900 | |
commit | 10268f7d5755f42e50e862505e7bac992d284546 (patch) | |
tree | 1ef7cfad44a0f462349de8c7bd061cb0d2d0a41f | |
parent | cifsd: don't use multiple blank lines (diff) | |
download | wireguard-linux-10268f7d5755f42e50e862505e7bac992d284546.tar.xz wireguard-linux-10268f7d5755f42e50e862505e7bac992d284546.zip |
cifsd: No space is necessary after a cast
No space is necessary after a cast.
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r-- | fs/cifsd/smb2pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifsd/smb2pdu.c b/fs/cifsd/smb2pdu.c index c0c0cf600ce7..bdaa69facee5 100644 --- a/fs/cifsd/smb2pdu.c +++ b/fs/cifsd/smb2pdu.c @@ -976,7 +976,7 @@ static __le32 deassemble_neg_contexts(struct ksmbd_conn *conn, break; ctxt_size = decode_compress_ctxt(conn, - (struct smb2_compression_ctx *) pneg_ctxt); + (struct smb2_compression_ctx *)pneg_ctxt); pneg_ctxt += DIV_ROUND_UP(ctxt_size, 8) * 8; } else if (*ContextType == SMB2_NETNAME_NEGOTIATE_CONTEXT_ID) { ksmbd_debug(SMB, |