From b8165ab6a9cf903e39418903598efa0909a6ce46 Mon Sep 17 00:00:00 2001 From: trasz Date: Tue, 4 Aug 2015 08:51:56 +0000 Subject: [PATCH] Mark vgonel() as static. It was already declared static earlier; no idea why compilers don't warn about this. MFC after: 1 month Sponsored by: The FreeBSD Foundation --- sys/kern/vfs_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index b24a6aeb761a..42cab157573a 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -2850,7 +2850,7 @@ vfs_notify_upper(struct vnode *vp, int event) /* * vgone, with the vp interlock held. */ -void +static void vgonel(struct vnode *vp) { struct thread *td;