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 028cf4ea449f557ea56be1a88020bf8aff9929ac
parent b7e500a6bb75107ade4854ff7e45e0f82b87c642
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Thu, 12 Jan 2017 18:04:29 +0100

Fix the "no sun definition" log message.

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

diff --git a/src/parser/solparser.c b/src/parser/solparser.c @@ -3060,7 +3060,7 @@ solparser_load(struct solparser* parser) } if(!parser->sun_key) { - log_err(parser, root, "%s: no sun definition in the document.\n"); + log_err(parser, root, "no sun definition in the document.\n"); res = RES_BAD_ARG; goto error; }