solstice

Compute collected power and efficiencies of a solar plant
git clone git://git.meso-star.com/solstice.git
Log | Files | Refs | README | LICENSE

commit cbe85532d61be6797c653d6da746d1d27dbe3b8f
parent 0d4f151b2fc6810c11234fd0b010a416899cd136
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed,  4 Jan 2017 11:57:04 +0100

Fix a bug into the solstice_setup_entities function

Diffstat:
Msrc/solstice_entity.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/solstice_entity.c b/src/solstice_entity.c @@ -185,7 +185,7 @@ solstice_setup_entities /* (re) create the list of roots from entities */ solparser_entity_iterator_begin(solstice->parser, &it); - solparser_entity_iterator_end(solstice->parser, &it); + solparser_entity_iterator_end(solstice->parser, &it_end); while (!solparser_entity_iterator_eq(&it, &it_end)) { struct solparser_entity_id entity_id; const struct solparser_entity* entity;