1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 12:25:12 +03:00

Warning removed

This commit is contained in:
Bertrand Songis 2016-03-05 08:42:55 +01:00
parent b8195e1372
commit ad33bff31c

View file

@ -354,8 +354,8 @@ static int luaTelemetryPush(lua_State *L)
}
}
unsigned int id = luaL_checkunsigned(L, 1);
unsigned int value = luaL_checkunsigned(L, 2);
uint8_t id = luaL_checkunsigned(L, 1);
uint32_t value = luaL_checkunsigned(L, 2);
luaOutputTelemetryFifo->push((LuaTelemetryValue){ id, value });
return 0;