diff options
| author | christos <christos@NetBSD.org> | 2005-05-30 22:12:35 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2005-05-30 22:12:35 +0000 |
| commit | bf6efce58bcde230b4e8a3e4362298263a81da3d (patch) | |
| tree | 28c8a3f0a50da411dfa0988e07582bd326010f6a | |
| parent | f954cf7e94b385ddc603d83f056a2b208d2d5d5c (diff) | |
Remove parameter names from function declarations. Can you spell shadow?
| -rw-r--r-- | sys/sys/vnode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index fc4929dbe84..02cc2e9a199 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $NetBSD: vnode.h,v 1.136 2005/05/29 21:19:41 christos Exp $ */ +/* $NetBSD: vnode.h,v 1.137 2005/05/30 22:12:35 christos Exp $ */ /* * Copyright (c) 1989, 1993 @@ -727,12 +727,12 @@ int vn_cow_disestablish(struct vnode *, int (*)(void *, struct buf *), void vntblinit(void); /* misc stuff */ -void vn_syncer_add_to_worklist(struct vnode *vp, int delay); -void vn_syncer_remove_from_worklist(struct vnode *vp); +void vn_syncer_add_to_worklist(struct vnode *, int); +void vn_syncer_remove_from_worklist(struct vnode *); int speedup_syncer(void); /* from vfs_syscalls.c - abused by compat code */ -int getvnode(struct filedesc *fdp, int fd, struct file **fpp); +int getvnode(struct filedesc *, int, struct file **); /* see vfssubr(9) */ void vfs_getnewfsid(struct mount *); |
