mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
cuse: Use NULL for SYSUNINIT's last arg, which is a pointer type
MFC after: 3 days
This commit is contained in:
parent
ec3175fc3b
commit
6854a14889
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue