diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2002-08-21 22:40:03 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2002-08-21 22:40:03 +0000 |
commit | f2893a253e7597363c5f6d2ee1c07aa64130154f (patch) | |
tree | bdd3529bbc9f84aa9100ef3150f909716da85fd2 /libguile/gc-freelist.c | |
parent | 483f518bd4112f0c5069e5f7a8d6b65e9fe9c6d4 (diff) | |
download | guile-f2893a253e7597363c5f6d2ee1c07aa64130154f.tar.gz |
make scm_cells_allocated unsigned again. Thanks to
Bill Schottstaedt for the bug report
Diffstat (limited to 'libguile/gc-freelist.c')
-rw-r--r-- | libguile/gc-freelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc-freelist.c b/libguile/gc-freelist.c index 21720534a..c885ceaf1 100644 --- a/libguile/gc-freelist.c +++ b/libguile/gc-freelist.c @@ -123,7 +123,7 @@ scm_i_adjust_min_yield (scm_t_cell_type_statistics *freelist) - (long) SCM_MAX (scm_gc_cells_collected_1, scm_gc_cells_collected)); #ifdef DEBUGINFO fprintf (stderr, " after GC = %lu, delta = %ld\n", - (long) scm_cells_allocated, + (unsigned long) scm_cells_allocated, (long) delta); #endif if (delta > 0) |