From 4c542c0fc6507f1da7c21d208779a7c035ddb302 Mon Sep 17 00:00:00 2001 From: Pierre Veyre Date: Tue, 8 Oct 2013 21:49:29 +0200 Subject: [PATCH] Fix error on variable name --- src/surf/storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1