git: 64771eeaf82f - stable/15 - sys/sysent.h: Remove an unneeded type cast

From: Zhenlei Huang <zlei_at_FreeBSD.org>
Date: Sat, 31 Jan 2026 17:04:30 UTC
The branch stable/15 has been updated by zlei:

URL: https://cgit.FreeBSD.org/src/commit/?id=64771eeaf82f06c2af4e0f20f40baa9d5103f0dd

commit 64771eeaf82f06c2af4e0f20f40baa9d5103f0dd
Author:     Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2025-10-13 10:12:35 +0000
Commit:     Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2026-01-31 17:01:06 +0000

    sys/sysent.h: Remove an unneeded type cast
    
    The function exec_sysvec_init() already has the right prototype.
    
    While here, remove an extra semicolon from the macro INIT_SYSENTVEC.
    
    MFC after:      1 week
    
    (cherry picked from commit 296db8c72dca1c17d9a4ce94cc8881e48df8187b)
---
 sys/sys/sysent.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys/sys/sysent.h b/sys/sys/sysent.h
index 1714fa5a7416..6de391dcc03e 100644
--- a/sys/sys/sysent.h
+++ b/sys/sys/sysent.h
@@ -343,8 +343,7 @@ void exec_free_abi_mappings(struct proc *p);
 void exec_onexec_old(struct thread *td);
 
 #define INIT_SYSENTVEC(name, sv)					\
-    SYSINIT(name, SI_SUB_EXEC, SI_ORDER_ANY,				\
-	(sysinit_cfunc_t)exec_sysvec_init, sv);
+    SYSINIT(name, SI_SUB_EXEC, SI_ORDER_ANY, exec_sysvec_init, sv)
 
 #endif /* _KERNEL */