lib: modules: Change XXX_init interface from XXX_init(void) to XXX_init(TALLOC_CTX *)
[vlendec/samba-autobuild/.git] / source3 / modules / vfs_vxfs.c
index feb3d49a3e66f05e415f072262c2d20d5f53c5e2..f8b0dfa82c5f6f325d0d5bd454a65a59cd649818 100644 (file)
@@ -826,8 +826,8 @@ static struct vfs_fn_pointers vfs_vxfs_fns = {
        .fsetxattr_fn = vxfs_fset_xattr,
 };
 
-NTSTATUS vfs_vxfs_init(void);
-NTSTATUS vfs_vxfs_init(void)
+NTSTATUS vfs_vxfs_init(TALLOC_CTX *);
+NTSTATUS vfs_vxfs_init(TALLOC_CTX *ctx)
 {
        return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "vxfs",
                                &vfs_vxfs_fns);