git: 3221c44d8009 - main - sys/compat/linux/linux_misc.c: remove an extra semicolon

From: Warner Losh <imp_at_FreeBSD.org>
Date: Sat, 03 Feb 2024 01:36:37 UTC
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;