Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Feb 2024 01:36:37 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3221c44d8009 - main - sys/compat/linux/linux_misc.c: remove an extra semicolon
Message-ID:  <202402030136.4131abLo011380@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=3221c44d8009ef24f024d670113d53aa3877bc6c

commit 3221c44d8009ef24f024d670113d53aa3877bc6c
Author:     rilysh <nightquick@proton.me>
AuthorDate: 2024-02-03 00:38:13 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-02-03 01:35:01 +0000

    sys/compat/linux/linux_misc.c: remove an extra semicolon
    
    Signed-off-by: rilysh <nightquick@proton.me>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/959
---
 sys/compat/linux/linux_misc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index b87c05322e16..cb62b0e70c0d 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -1975,7 +1975,7 @@ linux_sched_setaffinity(struct thread *td,
 	PROC_UNLOCK(tdt->td_proc);
 
 	len = min(args->len, sizeof(cpuset_t));
-	mask = malloc(sizeof(cpuset_t), M_TEMP, M_WAITOK | M_ZERO);;
+	mask = malloc(sizeof(cpuset_t), M_TEMP, M_WAITOK | M_ZERO);
 	error = copyin(args->user_mask_ptr, mask, len);
 	if (error != 0)
 		goto out;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402030136.4131abLo011380>