aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/cuse
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2018-05-18 17:58:09 +0000
committerEd Maste <emaste@FreeBSD.org>2018-05-18 17:58:09 +0000
commit891cf3ed448259522b32dec2bf068454d970ecf8 (patch)
tree5905866c277bde853739b310ee56e6948565ef28 /sys/fs/cuse
parent3dc3b1235ad61fbc88bd6faa5e8e65d0c6260510 (diff)
downloadsrc-891cf3ed448259522b32dec2bf068454d970ecf8.tar.gz
src-891cf3ed448259522b32dec2bf068454d970ecf8.zip
Use NULL for SYSINIT's last arg, which is a pointer type
Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=333806
Diffstat (limited to 'sys/fs/cuse')
-rw-r--r--sys/fs/cuse/cuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/cuse/cuse.c b/sys/fs/cuse/cuse.c
index 3cf3d0a204ac..572ec49fc070 100644
--- a/sys/fs/cuse/cuse.c
+++ b/sys/fs/cuse/cuse.c
@@ -252,7 +252,7 @@ cuse_kern_init(void *arg)
(CUSE_VERSION >> 16) & 0xFF, (CUSE_VERSION >> 8) & 0xFF,
(CUSE_VERSION >> 0) & 0xFF);
}
-SYSINIT(cuse_kern_init, SI_SUB_DEVFS, SI_ORDER_ANY, cuse_kern_init, 0);
+SYSINIT(cuse_kern_init, SI_SUB_DEVFS, SI_ORDER_ANY, cuse_kern_init, NULL);
static void
cuse_kern_uninit(void *arg)