Make return type of nfs_print be a void, not an int.

This commit is contained in:
mycroft 1993-08-02 23:12:31 +00:00
parent 6518b0ac4a
commit 781aeda1e7
2 changed files with 4 additions and 3 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)nfs_vnops.c 7.60 (Berkeley) 5/24/91
* $Id: nfs_vnops.c,v 1.9 1993/07/13 10:50:06 cgd Exp $
* $Id: nfs_vnops.c,v 1.10 1993/08/02 23:12:31 mycroft Exp $
*/
/*
@ -1723,6 +1723,7 @@ nfs_advlock(vp, id, op, fl, flags)
/*
* Print out the contents of an nfsnode.
*/
void
nfs_print(vp)
struct vnode *vp;
{

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)nfsnode.h 7.12 (Berkeley) 4/16/91
* $Id: nfsnode.h,v 1.3 1993/05/22 09:00:56 cgd Exp $
* $Id: nfsnode.h,v 1.4 1993/08/02 23:12:32 mycroft Exp $
*/
#ifndef _NFS_NFSNODE_H_
@ -214,7 +214,7 @@ int nfs_bmap __P((
daddr_t *bnp));
int nfs_strategy __P((
struct buf *bp));
int nfs_print __P((
void nfs_print __P((
struct vnode *vp));
int nfs_islocked __P((
struct vnode *vp));