diff options
| author | 2001-02-20 01:50:08 +0000 | |
|---|---|---|
| committer | 2001-02-20 01:50:08 +0000 | |
| commit | a06e3006bfddf6ebe1aa721a23500828beaad09c (patch) | |
| tree | 7ba2e80126b93011f9eb7b4ea79c61c7bcf2af6b /sys/miscfs/procfs/procfs_vfsops.c | |
| parent | Tone down the verbosity level slightly on the adw driver, print (diff) | |
| download | wireguard-openbsd-a06e3006bfddf6ebe1aa721a23500828beaad09c.tar.xz wireguard-openbsd-a06e3006bfddf6ebe1aa721a23500828beaad09c.zip | |
use void * consistently in vfs_mount and sys_mount. ok @art
Diffstat (limited to 'sys/miscfs/procfs/procfs_vfsops.c')
| -rw-r--r-- | sys/miscfs/procfs/procfs_vfsops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c index 5e997b87abf..287138795e0 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.11 2000/02/07 04:57:16 assar Exp $ */ +/* $OpenBSD: procfs_vfsops.c,v 1.12 2001/02/20 01:50:10 assar Exp $ */ /* $NetBSD: procfs_vfsops.c,v 1.25 1996/02/09 22:40:53 christos Exp $ */ /* @@ -61,7 +61,7 @@ #include <uvm/uvm_extern.h> #endif -int procfs_mount __P((struct mount *, const char *, caddr_t, +int procfs_mount __P((struct mount *, const char *, void *, struct nameidata *, struct proc *)); int procfs_start __P((struct mount *, int, struct proc *)); int procfs_unmount __P((struct mount *, int, struct proc *)); @@ -76,7 +76,7 @@ int procfs_mount(mp, path, data, ndp, p) struct mount *mp; const char *path; - caddr_t data; + void *data; struct nameidata *ndp; struct proc *p; { |
