diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 1999-01-27 21:50:00 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 1999-01-27 21:50:00 +0000 |
| commit | d254af07a14b8ea8891c2369150729943aa142df (patch) | |
| tree | 2f1d801e18eaabd9c7650b3093c05f623b35ce3e /sys/kern/vfs_cluster.c | |
| parent | 598217c491a12a9ff390d11f4f469a8444c52e20 (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_cluster.c')
| -rw-r--r-- | sys/kern/vfs_cluster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index 781508e20253..27e9167d83cf 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94 - * $Id: vfs_cluster.c,v 1.77 1999/01/10 01:58:25 eivind Exp $ + * $Id: vfs_cluster.c,v 1.78 1999/01/21 08:29:05 dillon Exp $ */ #include "opt_debug_cluster.h" @@ -367,7 +367,7 @@ cluster_rbuild(vp, filesize, lbn, blkno, size, run, fbp) round_page(size) > vp->v_maxio) break; - if (tbp = incore(vp, lbn + i)) { + if ((tbp = incore(vp, lbn + i)) != NULL) { if (tbp->b_flags & B_BUSY) break; |
