git: f9ee60cd21c2 - stable/13 - cuse: Use NULL for SYSUNINIT's last arg, which is a pointer type

From: Zhenlei Huang <zlei_at_FreeBSD.org>
Date: Sun, 15 Dec 2024 15:44:29 UTC
The branch stable/13 has been updated by zlei:

URL: https://cgit.FreeBSD.org/src/commit/?id=f9ee60cd21c25833f02ca5895c293e7a015602ba

commit f9ee60cd21c25833f02ca5895c293e7a015602ba
Author:     Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2024-12-09 17:14:07 +0000
Commit:     Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2024-12-15 15:43:35 +0000

    cuse: Use NULL for SYSUNINIT's last arg, which is a pointer type
    
    MFC after:      3 days
    
    (cherry picked from commit 6854a1488932cd043da940b87eb956d6df7d8522)
    (cherry picked from commit 23c1619970ab1082b8275ffb914463f1c62c2f84)
---
 sys/fs/cuse/cuse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/fs/cuse/cuse.c b/sys/fs/cuse/cuse.c
index 9ef234c35427..b5299ec0f1c0 100644
--- a/sys/fs/cuse/cuse.c
+++ b/sys/fs/cuse/cuse.c
@@ -332,7 +332,7 @@ cuse_kern_uninit(void *arg)
 
 	mtx_destroy(&cuse_global_mtx);
 }
-SYSUNINIT(cuse_kern_uninit, SI_SUB_DEVFS, SI_ORDER_ANY, cuse_kern_uninit, 0);
+SYSUNINIT(cuse_kern_uninit, SI_SUB_DEVFS, SI_ORDER_ANY, cuse_kern_uninit, NULL);
 
 static int
 cuse_server_get(struct cuse_server **ppcs)