diff options
| author | Zhenlei Huang <zlei@FreeBSD.org> | 2025-10-13 10:12:30 +0000 |
|---|---|---|
| committer | Zhenlei Huang <zlei@FreeBSD.org> | 2025-10-13 10:12:30 +0000 |
| commit | 11cfa861e3ff83649c54e5781b541166dc73e80b (patch) | |
| tree | 40ca17178c1ead121bd4e2493b1fe198505d9949 | |
| parent | 19061a898ac809c8e9a30839b7200ff13a6eb9c0 (diff) | |
p9fs: Use proper prototype for SYSINIT functions
MFC after: 1 week
| -rw-r--r-- | sys/fs/p9fs/p9_transport.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/fs/p9fs/p9_transport.c b/sys/fs/p9fs/p9_transport.c index c82d81fedcd7..25eee984265c 100644 --- a/sys/fs/p9fs/p9_transport.c +++ b/sys/fs/p9fs/p9_transport.c @@ -34,9 +34,8 @@ TAILQ_HEAD(, p9_trans_module) transports; static void -p9_transport_init(void) +p9_transport_init(void *dummy __unused) { - TAILQ_INIT(&transports); } |
