summaryrefslogtreecommitdiffstats
path: root/sys/miscfs/procfs/procfs_vfsops.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2004-05-20 18:32:37 +0000
committertedu <tedu@openbsd.org>2004-05-20 18:32:37 +0000
commitf521088c7d138161fd3291357ed1f33b75aa5201 (patch)
tree0f22443f8b68606f921c0b39349c5981c5f7957c /sys/miscfs/procfs/procfs_vfsops.c
parentFix arithmetic in vs_getiopb(), from mvme88k. (diff)
downloadwireguard-openbsd-f521088c7d138161fd3291357ed1f33b75aa5201.tar.xz
wireguard-openbsd-f521088c7d138161fd3291357ed1f33b75aa5201.zip
remove more caddr_t
Diffstat (limited to 'sys/miscfs/procfs/procfs_vfsops.c')
-rw-r--r--sys/miscfs/procfs/procfs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c
index 3b0b8db5262..632d9c7867b 100644
--- a/sys/miscfs/procfs/procfs_vfsops.c
+++ b/sys/miscfs/procfs/procfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: procfs_vfsops.c,v 1.23 2004/03/03 05:41:37 tedu Exp $ */
+/* $OpenBSD: procfs_vfsops.c,v 1.24 2004/05/20 18:32:38 tedu Exp $ */
/* $NetBSD: procfs_vfsops.c,v 1.25 1996/02/09 22:40:53 christos Exp $ */
/*
@@ -102,7 +102,7 @@ procfs_mount(mp, path, data, ndp, p)
pmnt = (struct procfsmount *) malloc(sizeof(struct procfsmount),
M_MISCFSMNT, M_WAITOK);
- mp->mnt_data = (qaddr_t)pmnt;
+ mp->mnt_data = pmnt;
vfs_getnewfsid(mp);
(void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size);