Skip to content

Commit 8e570d8

Browse files
committed
Fix a replace-o.
1 parent 61011ea commit 8e570d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/6model/containers.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static void code_pair_gc_mark_data(PARROT_INTERP, STable *st) {
3939
Parrot_gc_mark_PMC_alive(interp, data->store_code);
4040
}
4141

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) {
4343
if (st->container_data) {
4444
mem_sys_free(st->container_data);
4545
st->container_data = NULL;
@@ -90,7 +90,7 @@ static ContainerConfigurer * initialize_code_pair_spec(PARROT_INTERP) {
9090
code_pair_spec->fetch = code_pair_fetch;
9191
code_pair_spec->store = code_pair_store;
9292
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;
9494
code_pair_spec->serialize = code_pair_serialize;
9595
code_pair_spec->deserialize = code_pair_deserialize;
9696

0 commit comments

Comments
 (0)