X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/67c91d5b8652b0e76801e9cfc7d965a360237152..eaecea92dde01d850f6da36ec4cdfe86992a0f68:/src/surf/storage.c diff --git a/src/surf/storage.c b/src/surf/storage.c index e3679738df..6d3e23e1cf 100644 --- a/src/surf/storage.c +++ b/src/surf/storage.c @@ -207,8 +207,8 @@ static xbt_dict_t storage_get_content(void *storage) xbt_dict_t content_dict = xbt_dict_new_homogeneous(NULL); xbt_dict_cursor_t cursor = NULL; char *file; - char *size; - xbt_dict_foreach(((storage_t)storage_resource)->content, cursor, file, size){ + sg_storage_size_t *size; + xbt_dict_foreach(((storage_t)st)->content, cursor, file, size){ xbt_dict_set(content_dict,file,(void*)size,NULL); } return content_dict;