From fc6e40071657c214a76715b06f7cb58e6d9181fe Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sun, 12 Dec 1999 21:10:53 +0000 Subject: [PATCH] Fix pointer problem for the Alpha --- sys/fs/nwfs/nwfs_vnops.c | 4 ++-- sys/nwfs/nwfs_vnops.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/fs/nwfs/nwfs_vnops.c b/sys/fs/nwfs/nwfs_vnops.c index 38e9f191e085..29d7a821683f 100644 --- a/sys/fs/nwfs/nwfs_vnops.c +++ b/sys/fs/nwfs/nwfs_vnops.c @@ -788,11 +788,11 @@ static int nwfs_pathconf (ap) struct vop_pathconf_args /* { struct vnode *vp; int name; - int *retval; + register_t *retval; } */ *ap; { int name=ap->a_name, error=0; - int *retval=ap->a_retval; + register_t *retval=ap->a_retval; switch(name){ case _PC_LINK_MAX: diff --git a/sys/nwfs/nwfs_vnops.c b/sys/nwfs/nwfs_vnops.c index 38e9f191e085..29d7a821683f 100644 --- a/sys/nwfs/nwfs_vnops.c +++ b/sys/nwfs/nwfs_vnops.c @@ -788,11 +788,11 @@ static int nwfs_pathconf (ap) struct vop_pathconf_args /* { struct vnode *vp; int name; - int *retval; + register_t *retval; } */ *ap; { int name=ap->a_name, error=0; - int *retval=ap->a_retval; + register_t *retval=ap->a_retval; switch(name){ case _PC_LINK_MAX: