mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 04:40:29 +02:00
make scm_cells_allocated unsigned again. Thanks to
Bill Schottstaedt for the bug report
This commit is contained in:
parent
483f518bd4
commit
f2893a253e
5 changed files with 11 additions and 6 deletions
|
@ -228,7 +228,7 @@ scm_i_sweep_segment (scm_t_heap_segment * seg)
|
|||
scm_t_cell * p = seg->next_free_card;
|
||||
int yield = scm_gc_cells_collected;
|
||||
int coll = seg->freelist->collected;
|
||||
int alloc = scm_cells_allocated ;
|
||||
unsigned long alloc = scm_cells_allocated ;
|
||||
|
||||
while (scm_i_sweep_some_cards (seg) != SCM_EOL)
|
||||
;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue