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~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33ce4d16be19b2edd22dd195e7f819cba4d6e572;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 da25f8b3..77b6b45a 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); } } }