commit 4ee0eae5b1c0d66576adf1d85e9ed8624a4399e5
parent 4372dbd4a0207c624b42ab6d77aa1d1fd1143202
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 11 Aug 2025 15:58:19 +0200
Add a missing space in a log message
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/smeteo_load.c b/src/smeteo_load.c
@@ -181,8 +181,8 @@ parse_line(struct smeteo* smeteo, struct txtrdr* txtrdr)
SWdn_eps = SWdn*1e-6;
if(!eq_eps(SWdn_sum, SWdn, SWdn*1e-6)) {
WARN(smeteo,
- "%s:%zu: suspicious downward flux in short waves. It does not appear to be"
- "(approximately) equal to the sum of its components (direct + diffuse):"
+ "%s:%zu: suspicious downward flux in short waves. It does not appear to be "
+ "(approximately) equal to the sum of its components (direct + diffuse): "
"%g != %g +/- %g [W/m^2]\n",
txtrdr_get_name(txtrdr), txtrdr_get_line_num(txtrdr),
SWdn, SWdn_sum, SWdn_eps);