mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
netipsec: Use proper prototype for SYSINIT functions
MFC after: 1 week (cherry picked from commit 360bb45690d918fac5bae78ab44f45d11327067a)
This commit is contained in:
parent
cfc237162c
commit
a32ee2897f
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue