Skip to content

Commit

Permalink
Expand tabs while I'm here
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisShannon committed Jan 5, 2012
1 parent 11d4870 commit 05a89ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/6model/reprs/P6opaque.c
Original file line number Diff line number Diff line change
Expand Up @@ -728,10 +728,10 @@ static void gc_free(PARROT_INTERP, PMC *obj) {
st->REPR->gc_cleanup(interp, st, (char *)OBJECT_BODY(obj) + offset);
}
}
if (repr_data->allocation_size && !PObj_flag_TEST(private0, obj))
Parrot_gc_free_fixed_size_storage(interp, repr_data->allocation_size, PMC_data(obj));
else
mem_sys_free(PMC_data(obj));
if (repr_data->allocation_size && !PObj_flag_TEST(private0, obj))
Parrot_gc_free_fixed_size_storage(interp, repr_data->allocation_size, PMC_data(obj));
else
mem_sys_free(PMC_data(obj));
PMC_data(obj) = NULL;
}

Expand Down

0 comments on commit 05a89ef

Please sign in to comment.