From: suter Date: Sat, 5 Oct 2013 14:10:03 +0000 (+0200) Subject: should be sg_storage_size_t here too X-Git-Tag: v3_9_90~39^2~10 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/80c1a2cfb0528d85b659be0a62663b6cf54a5eae?hp=5488901ed773c31ae461b8f9d4f11d3a4f682b67;ds=sidebyside should be sg_storage_size_t here too --- diff --git a/src/surf/storage.c b/src/surf/storage.c index c36d8e68b4..e492a9c12b 100644 --- a/src/surf/storage.c +++ b/src/surf/storage.c @@ -207,7 +207,7 @@ 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; + sg_storage_size_t *size; xbt_dict_foreach(((storage_t)st)->content, cursor, file, size){ xbt_dict_set(content_dict,file,(void*)size,NULL); }