[PATCH][next] mqueue: remove duplicated ; at end of statement

Colin Ian King posted 1 patch 1 month, 2 weeks ago
ipc/mqueue.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] mqueue: remove duplicated ; at end of statement
Posted by Colin Ian King 1 month, 2 weeks ago
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
Re: [PATCH][next] mqueue: remove duplicated ; at end of statement
Posted by Al Viro 1 month, 2 weeks ago
On Fri, Dec 19, 2025 at 10:19:41AM +0000, Colin Ian King wrote:
> There is a duplicated semicolon at the end of a statement,
> remove it.

FWIW, that's dealt with in the series I've posted lately - see
viro/vfs.git #work.filename, if you prefer to look at it in
git.  I'm going to put that into -next this weekend, assuming nobody
posts objections.