mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-19 15:33:56 +00:00
Fix pointer problem for the Alpha
This commit is contained in:
parent
80da3ae170
commit
fc6e400716
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54519
@ -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:
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user