mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-19 19:20:23 +02:00
Fix amazing error in bdw.c
This commit is contained in:
parent
120cd91b02
commit
4d1358219b
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ mark_mutator(GC_word *addr, struct GC_ms_entry *mark_stack_ptr,
|
||||||
return state.mark_stack_ptr;
|
return state.mark_stack_ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i; i < GC_INLINE_FREELIST_COUNT; i++)
|
for (int i = 0; i < GC_INLINE_FREELIST_COUNT; i++)
|
||||||
state.mark_stack_ptr = GC_MARK_AND_PUSH (mut->freelists[i],
|
state.mark_stack_ptr = GC_MARK_AND_PUSH (mut->freelists[i],
|
||||||
state.mark_stack_ptr,
|
state.mark_stack_ptr,
|
||||||
state.mark_stack_limit,
|
state.mark_stack_limit,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue