diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2004-10-26 17:16:28 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2004-10-26 17:16:28 +0000 |
commit | 36792a78a57b46ad30dcdee776905f7731db05d2 (patch) | |
tree | 1a1f523c2d198df10f32abaf7519911159a77aa5 | |
parent | 74f61a0f9477afe3a3cc3b723d2f66f9a5b91831 (diff) |
styling
-rw-r--r-- | sys/kern/vfs_cluster.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index 6d84cd1494a..9d8cc67d0d8 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_cluster.c,v 1.32 2004/04/13 00:15:28 tedu Exp $ */ +/* $OpenBSD: vfs_cluster.c,v 1.33 2004/10/26 17:16:27 pedro Exp $ */ /* $NetBSD: vfs_cluster.c,v 1.12 1996/04/22 01:39:05 christos Exp $ */ /*- @@ -563,7 +563,7 @@ cluster_write(bp, ci, filesize) ci->ci_clen = maxclen; if (maxclen == 0) { /* I/O not contiguous */ ci->ci_cstart = lbn + 1; - bawrite(bp); + bawrite(bp); } else { /* Wait for rest of cluster */ ci->ci_cstart = lbn; bdwrite(bp); @@ -766,8 +766,8 @@ cluster_collectbufs(vp, ci, last_bp) buflist->bs_nchildren = 0; buflist->bs_children = (struct buf **)(buflist + 1); for (lbn = ci->ci_cstart, i = 0; i < len; lbn++, i++) - (void)bread(vp, lbn, last_bp->b_bcount, NOCRED, - &buflist->bs_children[i]); + (void)bread(vp, lbn, last_bp->b_bcount, NOCRED, + &buflist->bs_children[i]); buflist->bs_children[i] = last_bp; buflist->bs_nchildren = i + 1; return (buflist); |