summaryrefslogtreecommitdiff
path: root/libguile/gc.h
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@lilypond.org>2002-08-21 22:40:03 +0000
committerHan-Wen Nienhuys <hanwen@lilypond.org>2002-08-21 22:40:03 +0000
commitf2893a253e7597363c5f6d2ee1c07aa64130154f (patch)
treebdd3529bbc9f84aa9100ef3150f909716da85fd2 /libguile/gc.h
parent483f518bd4112f0c5069e5f7a8d6b65e9fe9c6d4 (diff)
downloadguile-f2893a253e7597363c5f6d2ee1c07aa64130154f.tar.gz
make scm_cells_allocated unsigned again. Thanks to
Bill Schottstaedt for the bug report
Diffstat (limited to 'libguile/gc.h')
-rw-r--r--libguile/gc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc.h b/libguile/gc.h
index f0f89b7f7..7388d5e42 100644
--- a/libguile/gc.h
+++ b/libguile/gc.h
@@ -290,7 +290,7 @@ SCM_API unsigned long scm_gc_cells_collected;
SCM_API unsigned long scm_gc_cells_collected;
SCM_API unsigned long scm_gc_malloc_collected;
SCM_API unsigned long scm_gc_ports_collected;
-SCM_API long scm_cells_allocated;
+SCM_API unsigned long scm_cells_allocated;
SCM_API int scm_gc_cell_yield_percentage;
SCM_API int scm_gc_malloc_yield_percentage;
SCM_API unsigned long scm_mallocated;