AP_Scripting: fix uint32 bitwise not

This commit is contained in:
Iampete1 2023-02-07 00:09:47 +00:00 committed by Andrew Tridgell
parent 5dde76b899
commit dcd55155af

View File

@ -88,7 +88,7 @@ UINT32_T_BOX_OP_BOOL(le, <=)
#define UINT32_T_BOX_OP_UNARY(name, sym) \
int uint32_t___##name(lua_State *L) { \
binding_argcheck(L, 1); \
binding_argcheck(L, 2); \
\
uint32_t v1 = coerce_to_uint32_t(L, 1); \
\