Fix some camelCase.
These are the files that are mostly right but contain a few
orthographic errors.
Change-Id: I2ca1b5fad71c24f911fd55cfc91f7031af66be99
diff --git a/src/card_table.cc b/src/card_table.cc
index 24c616a..0f295b2 100644
--- a/src/card_table.cc
+++ b/src/card_table.cc
@@ -106,14 +106,14 @@
}
void CardTable::CheckAddrIsInCardTable(const byte* addr) const {
- byte* cardAddr = biased_begin_ + ((uintptr_t)addr >> GC_CARD_SHIFT);
- if (!IsValidCard(cardAddr)) {
+ byte* card_addr = biased_begin_ + ((uintptr_t)addr >> GC_CARD_SHIFT);
+ if (!IsValidCard(card_addr)) {
byte* begin = mem_map_->Begin() + offset_;
byte* end = mem_map_->End();
LOG(FATAL) << "Cardtable - begin: " << reinterpret_cast<void*>(begin)
<< " end: " << reinterpret_cast<void*>(end)
<< " addr: " << reinterpret_cast<const void*>(addr)
- << " cardAddr: " << reinterpret_cast<void*>(cardAddr);
+ << " card_addr: " << reinterpret_cast<void*>(card_addr);
}
}