X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2f3bc1bedb87e982714241309c59180d10d87c94..2eba6b843463b01622d79c8ccc55bdffffd0454c:/examples/msg/io-storage/io-storage.c diff --git a/examples/msg/io-storage/io-storage.c b/examples/msg/io-storage/io-storage.c index 974de4d6d9..298e6e6501 100644 --- a/examples/msg/io-storage/io-storage.c +++ b/examples/msg/io-storage/io-storage.c @@ -93,18 +93,17 @@ static int host(int argc, char *argv[]){ /* - Finally dump disks contents */ XBT_INFO("*** Dump content of %s ***",MSG_host_get_name(MSG_host_self())); - xbt_dict_t contents = NULL; - contents = MSG_host_get_storage_content(MSG_host_self()); // contents is a dict of dicts + xbt_dict_t contents = MSG_host_get_storage_content(MSG_host_self()); // contents is a dict of dicts xbt_dict_cursor_t curs; xbt_dict_cursor_t curs2 = NULL; char* mountname; xbt_dict_t content; char* path; - sg_size_t size; + sg_size_t* psize; xbt_dict_foreach(contents, curs, mountname, content){ XBT_INFO("Print the content of mount point: %s",mountname); - xbt_dict_foreach(content,curs2,path,size){ - XBT_INFO("%s size: %llu bytes", path, *((sg_size_t*)size)); + xbt_dict_foreach (content, curs2, path, psize) { + XBT_INFO("%s size: %llu bytes", path, *psize); } xbt_dict_free(&content); }