AP_Scripting: fixed equality test for uint32_t

This commit is contained in:
Andrew Tridgell 2020-07-03 17:01:30 +10:00 committed by WickedShell
parent 613d2c2e0a
commit 6bab6d94bf
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ UINT32_T_BOX_OP(shr, >>)
return 1; \
}
UINT32_T_BOX_OP_BOOL(eq, =)
UINT32_T_BOX_OP_BOOL(eq, ==)
UINT32_T_BOX_OP_BOOL(lt, <)
UINT32_T_BOX_OP_BOOL(le, <=)