X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6532cb48078124e2fcdeda3b8074c4b642a635ac..a413f81990af8e4b725d3eb6712b885789a5121e:/src/xbt/heap.c diff --git a/src/xbt/heap.c b/src/xbt/heap.c index 2b153804cd..e124aab386 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -95,7 +95,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)); } @@ -132,7 +132,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; } @@ -145,7 +145,7 @@ void *xbt_heap_pop(xbt_heap_t H) /** * @brief Extracts from the heap and returns the element at position i. * \param H the heap we're working on - * \param i element position + * \param i element position * \return the element at position i if ok, NULL otherwise * * Extracts from the heap and returns the element at position i. The heap is automatically reorded.