Fix pointer problem for the Alpha

This commit is contained in:
Peter Wemm 1999-12-12 21:10:53 +00:00
parent 80da3ae170
commit fc6e400716
2 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -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: