diff mbox series

af_unix: cleancode: add space around '&'

Message ID da18ae5d-3c27-4688-26e1-d0de0b25eec7@huawei.com
State New
Headers show
Series af_unix: cleancode: add space around '&' | expand

Commit Message

Kemeng Shi May 4, 2021, 9:17 a.m. UTC
Add space around '&' when check MSG_OOB flags

Signed-off-by: Kemeng Shi <shikemeng@huawei.com>
---
 net/unix/af_unix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 5a31307ceb76..c0808dd19e98 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -1635,7 +1635,7 @@  static int unix_dgram_sendmsg(struct socket *sock, struct msghdr *msg,
 		return err;

 	err = -EOPNOTSUPP;
-	if (msg->msg_flags&MSG_OOB)
+	if (msg->msg_flags & MSG_OOB)
 		goto out;

 	if (msg->msg_namelen) {