Commit 163a8a62 authored by Giuseppe Carboni's avatar Giuseppe Carboni Committed by GitHub
Browse files

Fix #433, added a cast that should definitely fix the issue. (#462)

parent bb20dbd9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ void CRefractionCore::getCorrection(double obsZenithDistance,double waveLen, dou

		slaRefro(obsZenithDistance, hm, tdk, m_pressure, m_humidity, wl, phi, tlr, eps, corZenithDistance);
	}
	else *corZenithDistance = 0;
	else *corZenithDistance = (double)0;
}

void CRefractionCore::getMeteoParameters()