X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/541ef281453c502f14fb19bd9d19e169a0a5d02a..38259232fa161bc8e422b08cc363a3b046b1626c:/src/xbt/heap_private.h diff --git a/src/xbt/heap_private.h b/src/xbt/heap_private.h index c0330c73eb..cd2b6a81a2 100644 --- a/src/xbt/heap_private.h +++ b/src/xbt/heap_private.h @@ -18,7 +18,7 @@ typedef struct xbt_heap_item { typedef struct xbt_heap { int size; int count; - xbt_heap_item_t items; + s_xbt_heap_item_t* items; /* array of structs */ void_f_pvoid_t free; void (*update_callback) (void *, int); } s_xbt_heap_t;