X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bed55a06c0de08698519ba251e4c4298cc2ff4b6..3a54b6d1aef3110883b46f912b3a4eeb5c9fb087:/src/xbt/heap.c diff --git a/src/xbt/heap.c b/src/xbt/heap.c index f024b08e98..c795b76f8f 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -96,7 +96,7 @@ void xbt_heap_push(xbt_heap_t H, void *content, double key) if (count > size) { H->size = (size << 1) + 1; H->items = - (void *) realloc(H->items, + (void *) xbt_realloc(H->items, (H->size) * sizeof(struct xbt_heap_item)); } @@ -136,7 +136,7 @@ void *xbt_heap_pop(xbt_heap_t H) if (H->count < size >> 2 && size > 16) { size = (size >> 1) + 1; H->items = - (void *) realloc(items, + (void *) xbt_realloc(items, size * sizeof(struct xbt_heap_item)); H->size = size; }