summaryrefslogtreecommitdiff
path: root/libguile/gc.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-11-29 10:17:07 +0100
committerAndy Wingo <wingo@pobox.com>2011-11-29 10:17:07 +0100
commitd1c036248c2d50cd7e288bb82f83625813ccecf2 (patch)
treeed22e993e20a019fb851c301d6b11a05e066ca21 /libguile/gc.c
parent6360beb28a918448ed42b0ddb905b2d9d513d8b9 (diff)
downloadguile-d1c036248c2d50cd7e288bb82f83625813ccecf2.tar.gz
switch off debugging flag that was mistakenly left on
* libguile/gc.c (HEURISTICS_DEBUG): Whoops, switch this off.
Diffstat (limited to 'libguile/gc.c')
-rw-r--r--libguile/gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc.c b/libguile/gc.c
index 16878607f..e36f0a1e4 100644
--- a/libguile/gc.c
+++ b/libguile/gc.c
@@ -835,7 +835,7 @@ adjust_gc_frequency (void * hook_data SCM_UNUSED,
image_size = get_image_size ();
bytes_alloced = GC_get_total_bytes ();
-#define HEURISTICS_DEBUG 1
+#define HEURISTICS_DEBUG 0
#if HEURISTICS_DEBUG
fprintf (stderr, "prev image / alloced: %lu / %lu\n", prev_image_size, prev_bytes_alloced);