diff options
-rw-r--r-- | ext2fs/balloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/balloc.c b/ext2fs/balloc.c index 8ad29cec..7fe82ba0 100644 --- a/ext2fs/balloc.c +++ b/ext2fs/balloc.c @@ -197,7 +197,7 @@ repeat: * The goal was occupied; search forward for a free * block within the next 32 blocks */ - if (j & 31 == 31) + if ((j & 31) == 31) lmap = 0; else lmap = ((((unsigned long *) bh)[j >> 5]) >> |