Fix typo
[c11tester.git] / history.cc
index 3fe570b28e8c71f1334f195d4be23253a8efbe75..90951ab7bc30fca27e121992f7008722b6b5a46c 100644 (file)
@@ -184,10 +184,10 @@ void ModelHistory::process_action(ModelAction *act, thread_id_t tid)
        curr_act_list->push_back(act);
 
        // Increment ref count for every action and reads_froms
-       act->incr_read_ref_count();
+       act->incr_func_ref_count();
        if (act->is_read()) {
                ModelAction * rf = act->get_reads_from();
-               rf->incr_read_ref_count();
+               rf->incr_func_ref_count();
        }
 
        FuncNode * func_node = func_nodes[func_id];