bKwjvXxKmMn4Uq7kK6cvl74qwzQz/yrxzflbRIBjs8QqHBhR WySvmpu3R9uftn9UYlg9lqv1bPQ9VTJz12b85Q5RcUOBLRQ4+x4Piy20GHYj2Q== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1760350444; a=rsa-sha256; cv=none; b=okEgYqoyBfEcmE3EYJLP4Z/V1zfO4zfVCmmgcNe64DQgiOaZaSGXqU15d/tiic0rjqm3oq RvY2N3id/ZTTaFq+s2UnFQdZpexAShkBTu8YTg7TKdpYr54BqbYfw4eim3wrRuasZPzdvf XeQsq5vrB1To8SQ+mckzMwJJM7mtuuHp2Of/aGBcGkfLgS7AsRnWHm58nPxZEDb/erKMJQ nk2vVZtEtabMvnMEafGyApEFWfnzrPwd4Gl7tvUb+sAUQlzKUsiF1mTA5X/dMV/TwfWYiw kvMBedPoyVGmsT+vNVs51+XlXyLlzlBZu4UNu1rQ3XDim+c0XU8A/g2/Gru7bg== ARC-Authentication-Results: i=1; mx1.freebsd.org; none Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4clY983Hfwz12qD; Mon, 13 Oct 2025 10:14:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.18.1/8.18.1) with ESMTP id 59DAE40J064435; Mon, 13 Oct 2025 10:14:04 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.18.1/8.18.1/Submit) id 59DAE4tD064432; Mon, 13 Oct 2025 10:14:04 GMT (envelope-from git) Date: Mon, 13 Oct 2025 10:14:04 GMT Message-Id: <202510131014.59DAE4tD064432@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Zhenlei Huang Subject: git: 32c1e940e07c - main - audit: Use proper prototype for SYSINIT functions List-Id: Commit messages for the main branch of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-src-main@freebsd.org Sender: owner-dev-commits-src-main@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: zlei X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 32c1e940e07c48ab80427efd3d6ff2091407d577 Auto-Submitted: auto-generated The branch main has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=32c1e940e07c48ab80427efd3d6ff2091407d577 commit 32c1e940e07c48ab80427efd3d6ff2091407d577 Author: Zhenlei Huang AuthorDate: 2025-10-13 10:12:34 +0000 Commit: Zhenlei Huang CommitDate: 2025-10-13 10:12:34 +0000 audit: Use proper prototype for SYSINIT functions MFC after: 1 week --- sys/security/audit/audit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;