mirror of
https://github.com/opentx/opentx.git
synced 2025-07-16 12:55:12 +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());
|
||||
return 1;
|
||||
}
|
||||
else if (lua_gettop(L) > sizeof(SportTelemetryPacket) ) {
|
||||
else if (lua_gettop(L) > int(sizeof(SportTelemetryPacket))) {
|
||||
lua_pushboolean(L, false);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue