diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-13 21:28:10 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-13 21:28:10 +0000 |
commit | c9dcceade1c3bf2edea6597bd53ced756d4d9ce8 (patch) | |
tree | bd068df70f2024e9d2a4639249f3ce05d06543cf /sys/ufs/ffs/ffs_vfsops.c | |
parent | 05936e45a54d4cebe3983d0c0dd309b2a4f10e6e (diff) |
Missed a couple qaddr_t casts
Diffstat (limited to 'sys/ufs/ffs/ffs_vfsops.c')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 5249344fc0a..7fb60f34bb7 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.161 2016/08/10 08:04:57 natano Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.162 2016/08/13 21:28:09 guenther Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -867,7 +867,7 @@ ffs_mountfs(struct vnode *devvp, struct mount *mp, struct proc *p) for (i = 0; i < fs->fs_ncg; i++) *lp++ = fs->fs_contigsumsize; } - mp->mnt_data = (qaddr_t)ump; + mp->mnt_data = ump; mp->mnt_stat.f_fsid.val[0] = (long)dev; /* Use on-disk fsid if it exists, else fake it */ if (fs->fs_id[0] != 0 && fs->fs_id[1] != 0) |