isofs_print return type reverts to 'int'
This commit is contained in:
parent
61bcdb266e
commit
a31e66148f
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: isofs_node.h,v 1.8 1993/10/28 17:38:46 ws Exp $
|
||||
* $Id: isofs_node.h,v 1.9 1993/12/23 07:37:42 cgd Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -94,7 +94,7 @@ int isofs_reclaim __P((struct vnode *vp));
|
||||
int isofs_lock __P((struct vnode *vp));
|
||||
int isofs_unlock __P((struct vnode *vp));
|
||||
int isofs_strategy __P((struct buf *bp));
|
||||
void isofs_print __P((struct vnode *vp));
|
||||
int isofs_print __P((struct vnode *vp));
|
||||
int isofs_islocked __P((struct vnode *vp));
|
||||
void isofs_defattr __P((struct iso_directory_record *isodir,
|
||||
struct iso_node *inop, struct buf *bp));
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: isofs_vnops.c,v 1.12 1993/12/18 04:32:04 mycroft Exp $
|
||||
* $Id: isofs_vnops.c,v 1.13 1993/12/23 07:37:44 cgd Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -704,11 +704,12 @@ isofs_strategy(bp)
|
||||
/*
|
||||
* Print out the contents of an inode.
|
||||
*/
|
||||
void
|
||||
int
|
||||
isofs_print(vp)
|
||||
struct vnode *vp;
|
||||
{
|
||||
printf("tag VT_ISOFS, isofs vnode\n");
|
||||
return (0);
|
||||
}
|
||||
|
||||
extern int enodev ();
|
||||
|
Loading…
Reference in New Issue
Block a user