X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0446fc9e3f379b9aff5e0bb44cf06d06b9e663cc..21988c314858eeaf92a8b81be8e6ce6ee2243607:/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;