Fix a && that should be an &.

Reviewed by:	"John S. Dyson" <dyson@FreeBSD.ORG>
Submitted by:	jwd@unx.sas.com (John W. DeBoskey)
This commit is contained in:
David Greenman 1998-02-11 20:06:48 +00:00
parent 30b3777dd1
commit c78ab18a81
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33255

View file

@ -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);
}