diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1998-11-29 01:46:59 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1998-11-29 01:46:59 +0000 |
commit | 99fe6ec9b1aa34f23cfc5d5447fe068dd75e014d (patch) | |
tree | 0d095174f8348df93fdeb6a306b843e619e87f66 /sys/kern/vfs_bio.c | |
parent | 8aa9d070fbb0923e2255ec525484d9293f2382e1 (diff) |
indent
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r-- | sys/kern/vfs_bio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index e8abd767445..e3dc675b9d9 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_bio.c,v 1.20 1998/01/10 23:44:28 csapuntz Exp $ */ +/* $OpenBSD: vfs_bio.c,v 1.21 1998/11/29 01:46:58 art Exp $ */ /* $NetBSD: vfs_bio.c,v 1.44 1996/06/11 11:15:36 pk Exp $ */ /*- @@ -527,7 +527,7 @@ incore(vp, blkno) for (; bp != NULL; bp = bp->b_hash.le_next) { if (bp->b_lblkno == blkno && bp->b_vp == vp && !ISSET(bp->b_flags, B_INVAL)) - return (bp); + return (bp); } return (0); |