From: Matthew Dillon Date: Fri, 10 Feb 2012 03:31:08 +0000 (-0800) Subject: hammer2 - followup cleanup X-Git-Tag: v3.4.0rc~1227 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/10c5dee073273764518d2f8e4b4f291bd8c47012 hammer2 - followup cleanup * followup cleanup to last commit --- diff --git a/sys/vfs/hammer2/hammer2_vnops.c b/sys/vfs/hammer2/hammer2_vnops.c index 01cffbcc9d..387f967fb5 100644 --- a/sys/vfs/hammer2/hammer2_vnops.c +++ b/sys/vfs/hammer2/hammer2_vnops.c @@ -232,8 +232,8 @@ hammer2_vop_mountctl(struct vop_mountctl_args *ap) if (ap->a_ctllen != sizeof(struct export_args)) rc = (EINVAL); else - rc = vfs_export(mp, &hmp->hm_export, - (const struct export_args *) ap->a_ctl); + rc = vfs_export(mp, &hmp->export, + (const struct export_args *)ap->a_ctl); break; default: rc = vop_stdmountctl(ap);