aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 9410eefa..252249b6 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 1.76 2001/06/15 20:36:57 roberto Exp roberto $ 2** $Id: lcode.c,v 1.77 2001/07/17 14:30:44 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -794,7 +794,7 @@ int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) {
794} 794}
795 795
796 796
797int luaK_codeABc (FuncState *fs, OpCode o, int a, int bc) { 797int luaK_codeABc (FuncState *fs, OpCode o, int a, unsigned int bc) {
798 lua_assert(getOpMode(o) == iABc || getOpMode(o) == iAsBc); 798 lua_assert(getOpMode(o) == iABc || getOpMode(o) == iAsBc);
799 return luaK_code(fs, CREATE_ABc(o, a, bc)); 799 return luaK_code(fs, CREATE_ABc(o, a, bc));
800} 800}