mirror of
https://github.com/opentx/opentx.git
synced 2025-07-17 13:25:20 +03:00
Remove a warning
This commit is contained in:
parent
e96a76ff76
commit
ab33670e17
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ static int luaSportTelemetryPush(lua_State * L)
|
||||||
lua_pushboolean(L, outputTelemetryBuffer.isAvailable());
|
lua_pushboolean(L, outputTelemetryBuffer.isAvailable());
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (lua_gettop(L) > sizeof(SportTelemetryPacket) ) {
|
else if (lua_gettop(L) > int(sizeof(SportTelemetryPacket))) {
|
||||||
lua_pushboolean(L, false);
|
lua_pushboolean(L, false);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue