diff options
author | dg <dg@FreeBSD.org> | 1998-02-11 20:06:48 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1998-02-11 20:06:48 +0000 |
commit | fa872f3d146f139d120c8d1f2968b49ab03f640f (patch) | |
tree | dc20d68b8ebcb0e8796dcf23fd1b0a760de1e001 /sys | |
parent | b9a3bec4b4e68ed223b292cd1bf00a2fdffdb234 (diff) | |
download | FreeBSD-src-fa872f3d146f139d120c8d1f2968b49ab03f640f.zip FreeBSD-src-fa872f3d146f139d120c8d1f2968b49ab03f640f.tar.gz |
Fix a && that should be an &.
Reviewed by: "John S. Dyson" <dyson@FreeBSD.ORG>
Submitted by: jwd@unx.sas.com (John W. DeBoskey)
Diffstat (limited to 'sys')
-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 51b49ba..1c39978 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -11,7 +11,7 @@ * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * - * $Id: vfs_bio.c,v 1.149 1998/02/06 12:13:29 eivind Exp $ + * $Id: vfs_bio.c,v 1.150 1998/02/09 06:09:30 eivind Exp $ */ /* @@ -641,7 +641,7 @@ brelse(struct buf * bp) if (bp->b_flags & (B_INVAL | B_RELBUF)) vfs_vmio_release(bp); } else if (bp->b_flags & B_VMIO) { - if (bp->b_flags && (B_INVAL | B_RELBUF)) + if (bp->b_flags & (B_INVAL | B_RELBUF)) vfs_vmio_release(bp); } |