From 424509a54a8d7882f8ed1605279460cbe0f3b402 Mon Sep 17 00:00:00 2001 From: vsc Date: Fri, 14 Feb 2003 12:01:49 +0000 Subject: [PATCH] int=/=long changes git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@778 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- C/agc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C/agc.c b/C/agc.c index 81001e7fe..546e3ac8a 100644 --- a/C/agc.c +++ b/C/agc.c @@ -373,7 +373,7 @@ atom_gc(void) tot_agc_time += agc_time; tot_agc_recovered += agc_collected; if (gc_verbose) { - fprintf(Yap_stderr, "[AGC] collected %d bytes.\n", agc_collected); + fprintf(Yap_stderr, "[AGC] collected %ld bytes.\n", agc_collected); fprintf(Yap_stderr, "[AGC] GC %d took %g sec, total of %g sec doing GC so far.\n", agc_calls, (double)agc_time/1000, (double)tot_agc_time/1000); } }