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 af1a7271cb5c9c23a3488ee9e6e2e5326ddbbbd2
parent b7919ad2e562f839c307d04e666cc889b7fbe87b
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 15 Jun 2018 15:05:47 +0200

Fix an error message

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

diff --git a/src/solstice_args.c b/src/solstice_args.c @@ -324,7 +324,7 @@ parse_rendering_option(const char* str, struct solstice_args* args) goto error; } } else { - fprintf(stderr, "Invalid rendering option `%s'.\n", val); + fprintf(stderr, "Invalid rendering option `%s'.\n", key); res = RES_BAD_ARG; goto error; }