cuse: Use NULL for SYSUNINIT's last arg, which is a pointer type

MFC after:	3 days
This commit is contained in:
Zhenlei Huang 2024-12-10 01:14:07 +08:00
parent ec3175fc3b
commit 6854a14889

View file

@ -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)