summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-05-23 13:15:08 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-05-23 13:15:08 +0000
commit3520620880e18a1888c66d33e8fe69e3381292bf (patch)
tree40755c2037d9cd9fc027aef850177eaefc773b9e /sys/kern
parentdb8e89b77998123612f763908cdd1c46cc7ea24f (diff)
Indentation.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_syscalls.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
index dcdf5ed9ff5..fc064d9fe46 100644
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_syscalls.c,v 1.75 2001/05/16 17:14:36 millert Exp $ */
+/* $OpenBSD: vfs_syscalls.c,v 1.76 2001/05/23 13:15:07 art Exp $ */
/* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */
/*
@@ -2615,8 +2615,7 @@ getvnode(fdp, fd, fpp)
{
struct file *fp;
- if ((u_int)fd >= fdp->fd_nfiles ||
- (fp = fdp->fd_ofiles[fd]) == NULL)
+ if ((u_int)fd >= fdp->fd_nfiles || (fp = fdp->fd_ofiles[fd]) == NULL)
return (EBADF);
if (fp->f_type != DTYPE_VNODE)
return (EINVAL);