From: Pierre Veyre Date: Tue, 8 Oct 2013 19:49:29 +0000 (+0200) Subject: Fix error on variable name X-Git-Tag: v3_9_90~37 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4c542c0fc6507f1da7c21d208779a7c035ddb302?hp=d740fcc38174fbe1e9c5ec70ac3a15999fd62ac2;ds=sidebyside Fix error on variable name --- diff --git a/src/surf/storage.c b/src/surf/storage.c index 0f28e4f11c..53691367bd 100644 --- a/src/surf/storage.c +++ b/src/surf/storage.c @@ -215,7 +215,7 @@ static xbt_dict_t storage_get_content(void *storage) char *file; sg_storage_size_t *psize; - xbt_dict_foreach(((storage_t)st)->content, cursor, file, psize){ + xbt_dict_foreach(((storage_t)storage_resource)->content, cursor, file, psize){ xbt_dict_set(content_dict,file,psize,NULL); } return content_dict;