commit e0d33b54612fe1f723c8660a6ccc507d3cad82ba
parent 09ed3ce2bd76f86b4a38f080d10457f000d09c33
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Fri, 4 Sep 2026 11:17:38 +0200
Fix solpp
Reading of the geometry data add been broken by the recent changes.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/solpp.c b/src/solpp.c
@@ -210,6 +210,7 @@ main(int argc, char** argv)
CHK(geom = fopen(argv[1], "r"));
CHK(input = fopen(argv[2], "r"));
+ CHK(read_line(&buf, geom, &dont_read_g)); /* Skip the sun direction of the geometry */
while((line = read_line(&buf, input, &dont_read_i))) {
struct simul simul;