diff options
| author | Zhenlei Huang <zlei@FreeBSD.org> | 2025-10-13 10:12:34 +0000 |
|---|---|---|
| committer | Zhenlei Huang <zlei@FreeBSD.org> | 2026-01-31 18:25:05 +0000 |
| commit | 139a9451b9105cad9ccb0b8e4eda91d9cbc40b69 (patch) | |
| tree | a2f775dc752365758e20ebeacef6ec10db62d0b0 | |
| parent | 01af376bd00cb7d367e1c1ec8fc45a6fb8a6f812 (diff) | |
audit: Use proper prototype for SYSINIT functions
MFC after: 1 week
(cherry picked from commit 32c1e940e07c48ab80427efd3d6ff2091407d577)
(cherry picked from commit c48a31e3508555606b4399d33000cf60fe98e207)
| -rw-r--r-- | sys/security/audit/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/security/audit/audit.c b/sys/security/audit/audit.c index 3fb38b083960..82f495f28cfc 100644 --- a/sys/security/audit/audit.c +++ b/sys/security/audit/audit.c @@ -330,7 +330,7 @@ audit_record_dtor(void *mem, int size, void *arg) * call into the BSM assembly code to initialize it. */ static void -audit_init(void) +audit_init(void *dummy __unused) { audit_trail_enabled = 0; |
