X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df5fc39f2f638cf1454e29b9a5c2e39af9e1b9ba..7c5d24856794b213573f5e67bf138db144dac2eb:/src/xbt/heap.c diff --git a/src/xbt/heap.c b/src/xbt/heap.c index 747b2e3521..243e9c3212 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -45,7 +45,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;