public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] mqueue: remove duplicated ; at end of statement
@ 2025-12-19 10:19 Colin Ian King
  2025-12-19 10:23 ` Al Viro
  0 siblings, 1 reply; 2+ messages in thread
From: Colin Ian King @ 2025-12-19 10:19 UTC (permalink / raw)
  To: Christian Brauner, NeilBrown, Al Viro; +Cc: kernel-janitors, linux-kernel

There is a duplicated semicolon at the end of a statement,
remove it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 ipc/mqueue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index c4f6d65596cf..b4f671b76cd9 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -912,7 +912,7 @@ static struct file *mqueue_file_open(struct filename *name,
 static int do_mq_open(const char __user *u_name, int oflag, umode_t mode,
 		      struct mq_attr *attr)
 {
-	struct filename *name __free(putname) = NULL;;
+	struct filename *name __free(putname) = NULL;
 	struct vfsmount *mnt = current->nsproxy->ipc_ns->mq_mnt;
 	int fd, ro;
 
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-12-19 10:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-19 10:19 [PATCH][next] mqueue: remove duplicated ; at end of statement Colin Ian King
2025-12-19 10:23 ` Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox