Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a replace-o.
  • Loading branch information
jnthn committed Mar 19, 2013
1 parent 61011ea commit 8e570d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/6model/containers.c
Expand Up @@ -39,7 +39,7 @@ static void code_pair_gc_mark_data(PARROT_INTERP, STable *st) {
Parrot_gc_mark_PMC_alive(interp, data->store_code);
}

static void code_pair_gc_mem_sys_free_data(PARROT_INTERP, STable *st) {
static void code_pair_gc_free_data(PARROT_INTERP, STable *st) {
if (st->container_data) {
mem_sys_free(st->container_data);
st->container_data = NULL;
Expand Down Expand Up @@ -90,7 +90,7 @@ static ContainerConfigurer * initialize_code_pair_spec(PARROT_INTERP) {
code_pair_spec->fetch = code_pair_fetch;
code_pair_spec->store = code_pair_store;
code_pair_spec->gc_mark_data = code_pair_gc_mark_data;
code_pair_spec->gc_mem_sys_free_data = code_pair_gc_mem_sys_free_data;
code_pair_spec->gc_free_data = code_pair_gc_free_data;
code_pair_spec->serialize = code_pair_serialize;
code_pair_spec->deserialize = code_pair_deserialize;

Expand Down

0 comments on commit 8e570d8

Please sign in to comment.