Skip to content
Snippets Groups Projects
Commit 3bae08c6 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix missing explicit integer to floating-point conversion.

parent fbb6cb8f
No related branches found
No related tags found
1 merge request!14Draft: K202125/cdi 1.8.x pio merge followup
Pipeline #15869 failed
......@@ -1178,7 +1178,7 @@ cdiPioDistGridDefAReductions(grid_t *gridptr, size_t saIdx)
if (saIdx == cdiPioGDsaXVals)
{
double xval0 = scanVals[0], xvalW = scanVals[lsize];
refInc = (fabs(xvalW) - fabs(xval0))/(gsize - 1);
refInc = (fabs(xvalW) - fabs(xval0))/(double)(gsize - 1);
}
else if (saIdx == cdiPioGDsaYVals)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment