X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b08c515d1ded5726d50e3e9e11c03260e3e1546d..f6890feee4b0c49caf9026977053d8ada82dfcad:/src/surf/storage.c diff --git a/src/surf/storage.c b/src/surf/storage.c index 416cadfc5c..17ed2b164c 100644 --- a/src/surf/storage.c +++ b/src/surf/storage.c @@ -206,9 +206,9 @@ static xbt_dict_t storage_get_content(void *storage) xbt_dict_t content_dict = xbt_dict_new(); xbt_dict_cursor_t cursor = NULL; char *file; - size_t size; + char *size; xbt_dict_foreach(((storage_t)st)->content, cursor, file, size){ - xbt_dict_set(content_dict,file,&size,NULL); + xbt_dict_set(content_dict,file,(void*)size,NULL); } return content_dict; }