diff options
| author | Zhenlei Huang <zlei@FreeBSD.org> | 2025-10-13 10:12:34 +0000 |
|---|---|---|
| committer | Zhenlei Huang <zlei@FreeBSD.org> | 2025-10-13 10:12:34 +0000 |
| commit | 32c1e940e07c48ab80427efd3d6ff2091407d577 (patch) | |
| tree | 573d848ec7c14b0e047087e22db92f994b6d6c84 | |
| parent | a06ecc4f70c296f62f666421c3cf9643d40bdca2 (diff) | |
audit: Use proper prototype for SYSINIT functions
MFC after: 1 week
| -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 7ec50d990d4e..876776e5f62e 100644 --- a/sys/security/audit/audit.c +++ b/sys/security/audit/audit.c @@ -329,7 +329,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; |
