commit 4148b153294942a51d4b14ae80eefc2fb843db5b
parent c858f7e1f07146001874689b0bd8b94f232b1e8d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 25 Nov 2015 12:21:01 +0100
Fix a "signed to unsigned comparison" GCC warning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sschiff_estimator.c b/src/sschiff_estimator.c
@@ -679,7 +679,7 @@ sschiff_integrate
/* Paralell Schiff integration */
#pragma omp parallel for schedule(dynamic)
- for(igeom=0; igeom < ngeoms; ++igeom) {
+ for(igeom=0; igeom < (int)ngeoms; ++igeom) {
const double* wlengths = estimator->wavelengths;
struct sschiff_material material = SSCHIFF_NULL_MATERIAL;
size_t iwavelength;