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 d4c70b8c63738703eac2bc013703e46f79c6a2b8
parent 11afdc28e796791ea883f2e7c8295367c9f8c872
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed,  4 Jan 2017 11:53:12 +0100

Add a missing break in solstice_get_ssol_material

Diffstat:
Msrc/solstice_material.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/solstice_material.c b/src/solstice_material.c @@ -173,6 +173,7 @@ solstice_get_ssol_material case SOLPARSER_MATERIAL_MATTE: matte = solparser_get_material_matte(solstice->parser, mtl->data.matte); res = create_material_matte(solstice, matte, &ssol_mtl); + break; default: FATAL("Unreachable code.\n"); break; } if(res != RES_OK) goto error;