From d17c63efa5b051c759b315840ef061ea8316bd90 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 9 Oct 2009 23:37:35 -0500 Subject: [PATCH] vm: rename --- vm/old_space.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--;