1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-14 03:49:52 +03:00

Compilation fix for gcc 6.2.0

This commit is contained in:
Damjan Adamic 2017-03-19 22:30:40 +01:00
parent 4ecc41229a
commit fab3b96815

View file

@ -74,7 +74,7 @@ int16_t getGVarValue(int8_t gv, int8_t fm)
int32_t getGVarValuePrec1(int8_t gv, int8_t fm)
{
int8_t mul;
uint8_t prec = g_model.gvars[abs(gv)].prec;
uint8_t prec = g_model.gvars[abs((int)gv)].prec; // explicit cast to `int` needed, othervise gv is promoted to double!
if (prec == 0)
mul = 10;
else