From cfff0135868969de015e5cdcbd50ae7ae3ecc92d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 3 Jun 2002 14:47:18 -0300 Subject: detail --- lcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lcode.c') diff --git a/lcode.c b/lcode.c index 2bf050dc..af2a0838 100644 --- a/lcode.c +++ b/lcode.c @@ -1,5 +1,5 @@ /* -** $Id: lcode.c,v 1.104 2002/05/14 17:52:22 roberto Exp roberto $ +** $Id: lcode.c,v 1.105 2002/05/27 20:35:40 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -630,7 +630,7 @@ void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) { -static const OpCode cmp_masks[] = { /* ORDER OPR */ +static const int cmp_masks[] = { /* ORDER OPR */ CMP_LT, (CMP_LT | CMP_EQ), CMP_GT, (CMP_GT | CMP_EQ) }; -- cgit v1.2.3-55-g6feb