From: Petter Urkedal Date: Wed, 22 Oct 2008 17:29:48 +0000 (+0200) Subject: Fixed compilation errors, also tests passes. X-Git-Tag: gc7_3alpha2~320^2^2~8^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ee08a39ba13b3f6031183fee59d1b7528e3ecde;p=gc Fixed compilation errors, also tests passes. reclaim.c: Removed obsolete argument to GC_reclaim_small_nonempty_block. --- diff --git a/reclaim.c b/reclaim.c index b55860cc..07b51ecf 100644 --- a/reclaim.c +++ b/reclaim.c @@ -728,7 +728,7 @@ void GC_reclaim_unconditionally_marked(void) while ((hbp = *rlh) != 0) { hhdr = HDR(hbp); *rlh = hhdr->hb_next; - GC_reclaim_small_nonempty_block(hbp, FALSE, &GC_bytes_found); + GC_reclaim_small_nonempty_block(hbp, FALSE); } } }