mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
gc: oops, forgot the "freed" count
Partial work towards addressing issue #534.
This commit is contained in:
parent
546eb76861
commit
fb334d1e89
1 changed files with 1 additions and 1 deletions
2
gc.c
2
gc.c
|
@ -2769,7 +2769,7 @@ void gc_heap_merge(gc_heap * hdest, gc_heap * hsrc)
|
|||
void gc_merge_all_heaps(gc_thread_data * dest, gc_thread_data * src)
|
||||
{
|
||||
gc_heap *hdest, *hsrc, *cur, *prev;
|
||||
int heap_type;
|
||||
int heap_type, freed;
|
||||
|
||||
for (heap_type = 0; heap_type < NUM_HEAP_TYPES; heap_type++) {
|
||||
hdest = dest->heap->heap[heap_type];
|
||||
|
|
Loading…
Add table
Reference in a new issue