Skip to content

Commit

Permalink
Merge pull request #151 from Atreyee/master
Browse files Browse the repository at this point in the history
Fixed minor bug in compilation of EE with debug log enabled.
  • Loading branch information
apavlo committed Jan 29, 2014
2 parents 0ac50bd + b2bb11f commit a6170c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ee/storage/persistenttable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ bool PersistentTable::evictBlockToDisk(const long block_size, int num_blocks) {
eviction_manager->removeTuple(this, &tuple);
if (tuple.isEvicted())
{
VOLT_INFO("Tuple %d is already evicted. Skipping", tuple.getTupleID());
VOLT_INFO("Tuple %d is already evicted. Skipping", this->getTupleID(tuple.address()));
continue;
}
VOLT_DEBUG("Evicting Tuple: %s", tuple.debug(name()).c_str());
Expand Down

0 comments on commit a6170c1

Please sign in to comment.