commit a9038f83d9e8e237b553536470c4ec06825fd998
parent 5ad70940861cfe095b381888534fdc2f9e4200b4
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 3 Sep 2025 16:21:13 +0200
Fix an "unused variable" warning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/stardis_smeteo.c b/src/stardis_smeteo.c
@@ -273,7 +273,7 @@ stardis_radiative_env_temperature
struct boundary_condition* bcond = data;
size_t i = 0; /* Index of the meteo entry including fragment time */
ASSERT(time && dir && data);
- (void)data; /* Avoid "unused variable" warning */
+ (void)dir, (void)data; /* Avoid "unused variable" warning */
i = get_meteo_entry_id(bcond, time);
return bcond->lib_desc.smeteo_desc.entries[i].Trad;