diff options
| author | Zhenlei Huang <zlei@FreeBSD.org> | 2025-10-13 10:12:33 +0000 |
|---|---|---|
| committer | Zhenlei Huang <zlei@FreeBSD.org> | 2026-01-31 17:01:05 +0000 |
| commit | a32ee2897f8eed4a03976be65020912f03f7228e (patch) | |
| tree | 3f9e221499567f35f503f2787b6eb1d424fe3aed | |
| parent | cfc237162c248d0488e264bf1fdae0186c5a13c1 (diff) | |
netipsec: Use proper prototype for SYSINIT functions
MFC after: 1 week
(cherry picked from commit 360bb45690d918fac5bae78ab44f45d11327067a)
| -rw-r--r-- | sys/netipsec/xform_ipcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipsec/xform_ipcomp.c b/sys/netipsec/xform_ipcomp.c index 778cd955310a..61fb9413a01a 100644 --- a/sys/netipsec/xform_ipcomp.c +++ b/sys/netipsec/xform_ipcomp.c @@ -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 |
