From: Arnaud Giersch Date: Tue, 21 Feb 2012 20:47:43 +0000 (+0100) Subject: Fix error: too many arguments to function `mmalloc_compare_heap'. X-Git-Tag: exp_20120308~28 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/05db3c06cb0a0e34fda8b2d2f82a6265570bbcf2 Fix error: too many arguments to function `mmalloc_compare_heap'. --- diff --git a/src/mc/mc_liveness.c b/src/mc/mc_liveness.c index 70555b5252..99ca5be7b3 100644 --- a/src/mc/mc_liveness.c +++ b/src/mc/mc_liveness.c @@ -73,7 +73,7 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ return 1; } } - if(mmalloc_compare_heap(s1->regions[i]->data, s2->regions[i]->data, std_heap)){ + if(mmalloc_compare_heap(s1->regions[i]->data, s2->regions[i]->data)){ if(XBT_LOG_ISENABLED(mc_liveness, xbt_log_priority_debug)){ XBT_DEBUG("Different heap (mmalloc_compare)"); errors++;