From 7cd5a03a8e5cffefd72316038c54dbffa303e0e5 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Tue, 28 Oct 2008 12:22:33 +0000 Subject: [PATCH] Style return statements in vn_pollrecord(). --- sys/kern/vfs_subr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index e2d573495f8..ec270e7b530 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -3252,12 +3252,12 @@ vn_pollrecord(struct vnode *vp, struct thread *td, int events) vp->v_pollinfo->vpi_revents &= ~events; mtx_unlock(&vp->v_pollinfo->vpi_lock); - return events; + return (events); } vp->v_pollinfo->vpi_events |= events; selrecord(td, &vp->v_pollinfo->vpi_selinfo); mtx_unlock(&vp->v_pollinfo->vpi_lock); - return 0; + return (0); } /*