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:
Ingo Weinhold 2010-09-12 09:58:49 +00:00
parent 66c75febfd
commit c1a1df8d83

View File

@ -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);