diff options
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ static lua_Integer intarith (lua_State *L, int op, lua_Integer v1, | |||
83 | case LUA_OPSUB:return intop(-, v1, v2); | 83 | case LUA_OPSUB:return intop(-, v1, v2); |
84 | case LUA_OPMUL:return intop(*, v1, v2); | 84 | case LUA_OPMUL:return intop(*, v1, v2); |
85 | case LUA_OPMOD: return luaV_mod(L, v1, v2); | 85 | case LUA_OPMOD: return luaV_mod(L, v1, v2); |
86 | case LUA_OPIDIV: return luaV_div(L, v1, v2); | 86 | case LUA_OPIDIV: return luaV_idiv(L, v1, v2); |
87 | case LUA_OPBAND: return intop(&, v1, v2); | 87 | case LUA_OPBAND: return intop(&, v1, v2); |
88 | case LUA_OPBOR: return intop(|, v1, v2); | 88 | case LUA_OPBOR: return intop(|, v1, v2); |
89 | case LUA_OPBXOR: return intop(^, v1, v2); | 89 | case LUA_OPBXOR: return intop(^, v1, v2); |