Typo: & used instead of &&.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38609 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -552,7 +552,7 @@ BlockAllocator::_AllocateInBitmapBlock(uint64 base, uint32 count,
|
|||||||
// we have.
|
// we have.
|
||||||
uint32 remaining = count;
|
uint32 remaining = count;
|
||||||
|
|
||||||
while (remaining > 0 & bits < bitsEnd) {
|
while (remaining > 0 && bits < bitsEnd) {
|
||||||
PRINT(" remaining: %" B_PRIu32 ", index: %" B_PRIu32 ".%" B_PRIu32
|
PRINT(" remaining: %" B_PRIu32 ", index: %" B_PRIu32 ".%" B_PRIu32
|
||||||
", bits: %#" B_PRIx32 "\n", remaining,
|
", bits: %#" B_PRIx32 "\n", remaining,
|
||||||
kBlocksPerBitmapBlock - (bitsEnd - bits), bitOffset, *bits);
|
kBlocksPerBitmapBlock - (bitsEnd - bits), bitOffset, *bits);
|
||||||
|
|||||||
Reference in New Issue
Block a user