summaryrefslogtreecommitdiff
path: root/bio.c
diff options
context:
space:
mode:
wrap long lines
Diffstat (limited to 'bio.c')
-rw-r--r--bio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bio.c b/bio.c
index 62675bf..ab5f41f 100644
--- a/bio.c
+++ b/bio.c
@@ -41,7 +41,8 @@ getblk(uint dev, uint sector)
for(;;){
for(b = bufhead.next; b != &bufhead; b = b->next)
- if((b->flags & (B_BUSY|B_VALID)) && b->dev == dev && b->sector == sector)
+ if((b->flags & (B_BUSY|B_VALID)) &&
+ b->dev == dev && b->sector == sector)
break;
if(b != &bufhead){