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:
parent
66c75febfd
commit
c1a1df8d83
@ -552,7 +552,7 @@ BlockAllocator::_AllocateInBitmapBlock(uint64 base, uint32 count,
|
||||
// we have.
|
||||
uint32 remaining = count;
|
||||
|
||||
while (remaining > 0 & bits < bitsEnd) {
|
||||
while (remaining > 0 && bits < bitsEnd) {
|
||||
PRINT(" remaining: %" B_PRIu32 ", index: %" B_PRIu32 ".%" B_PRIu32
|
||||
", bits: %#" B_PRIx32 "\n", remaining,
|
||||
kBlocksPerBitmapBlock - (bitsEnd - bits), bitOffset, *bits);
|
||||
|
Loading…
Reference in New Issue
Block a user