netipsec: Use proper prototype for SYSINIT functions

MFC after:	1 week

(cherry picked from commit 360bb45690d918fac5bae78ab44f45d11327067a)
This commit is contained in:
Zhenlei Huang 2025-10-13 18:12:33 +08:00
parent cfc237162c
commit a32ee2897f

View file

@ -762,7 +762,7 @@ static struct xformsw ipcomp_xformsw = {
};
static void
ipcomp_attach(void)
ipcomp_attach(void *dummy __unused)
{
#ifdef INET
@ -775,7 +775,7 @@ ipcomp_attach(void)
}
static void
ipcomp_detach(void)
ipcomp_detach(void *dummy __unused)
{
#ifdef INET