File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ static void code_pair_gc_mark_data(PARROT_INTERP, STable *st) {
39
39
Parrot_gc_mark_PMC_alive (interp , data -> store_code );
40
40
}
41
41
42
- static void code_pair_gc_mem_sys_free_data (PARROT_INTERP , STable * st ) {
42
+ static void code_pair_gc_free_data (PARROT_INTERP , STable * st ) {
43
43
if (st -> container_data ) {
44
44
mem_sys_free (st -> container_data );
45
45
st -> container_data = NULL ;
@@ -90,7 +90,7 @@ static ContainerConfigurer * initialize_code_pair_spec(PARROT_INTERP) {
90
90
code_pair_spec -> fetch = code_pair_fetch ;
91
91
code_pair_spec -> store = code_pair_store ;
92
92
code_pair_spec -> gc_mark_data = code_pair_gc_mark_data ;
93
- code_pair_spec -> gc_mem_sys_free_data = code_pair_gc_mem_sys_free_data ;
93
+ code_pair_spec -> gc_free_data = code_pair_gc_free_data ;
94
94
code_pair_spec -> serialize = code_pair_serialize ;
95
95
code_pair_spec -> deserialize = code_pair_deserialize ;
96
96
You can’t perform that action at this time.
0 commit comments