diff --git a/vm/old_space.hpp b/vm/old_space.hpp index 6e2664c758..8d77e8499a 100644 --- a/vm/old_space.hpp +++ b/vm/old_space.hpp @@ -23,7 +23,7 @@ struct old_space : zone { /* Find the card which contains the header of the object which contains the given address */ - cell find_object_start_card(cell address) + cell find_card_containing_header(cell address) { cell i = object_start_map_index(address); while(i >= 0 && object_start_offsets[i] == card_starts_inside_object) i--;