aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lobject.c b/lobject.c
index d011c85f..3ce052c2 100644
--- a/lobject.c
+++ b/lobject.c
@@ -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);