diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-05-20 18:32:39 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-05-20 18:32:39 +0000 |
commit | 7c69cf8c4003a6653d7489bbe821376a3207db2f (patch) | |
tree | 35918811be1d242129f5f02847f4fe920483cc0f /sys/miscfs/portal | |
parent | 91baecc933ea55719a96d5820bb4123c1d44ee65 (diff) |
remove more caddr_t
Diffstat (limited to 'sys/miscfs/portal')
-rw-r--r-- | sys/miscfs/portal/portal_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/portal/portal_vfsops.c b/sys/miscfs/portal/portal_vfsops.c index 8f56b899147..228fda28e37 100644 --- a/sys/miscfs/portal/portal_vfsops.c +++ b/sys/miscfs/portal/portal_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: portal_vfsops.c,v 1.19 2004/03/03 06:01:48 tedu Exp $ */ +/* $OpenBSD: portal_vfsops.c,v 1.20 2004/05/20 18:32:38 tedu Exp $ */ /* $NetBSD: portal_vfsops.c,v 1.14 1996/02/09 22:40:41 christos Exp $ */ /* @@ -127,7 +127,7 @@ portal_mount(mp, path, data, ndp, p) FRELE(fp); mp->mnt_flag |= MNT_LOCAL; - mp->mnt_data = (qaddr_t)fmp; + mp->mnt_data = fmp; vfs_getnewfsid(mp); (void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size); |