X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ca1291c2f63ca6235f4b4885c48413a900aade4..13a86be8f230907c165887f94fc37a63256b7174:/src/xbt/heap.c diff --git a/src/xbt/heap.c b/src/xbt/heap.c index 71a87a0a39..a91e006bf9 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -61,7 +61,7 @@ void xbt_heap_free(xbt_heap_t H) int i; if (H->free) for (i = 0; i < H->count; i++) - (*(H->free)) (H->items[i].content); + H->free(H->items[i].content); free(H->items); free(H); return;