fix typo in LuaJIT

This commit is contained in:
kikito 2015-04-06 20:57:59 +02:00
parent d3c97f950f
commit bd1dd4bd0f
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ local bit_or, bit_and, bit_not, bit_xor, bit_rshift, bit_lshift
local ok, bit = pcall(require, 'bit')
if ok then
bit_or, bit_and, bit_not, bit_xor, bit_rshift, bit_lshift = bit.bor, bit.band, bit.bnot, bit.xor, bit.rshift, bit.lshift
bit_or, bit_and, bit_not, bit_xor, bit_rshift, bit_lshift = bit.bor, bit.band, bit.bnot, bit.bxor, bit.rshift, bit.lshift
else
ok, bit = pcall(require, 'bit32')