From 0f30d00c872b4dc4b77daabc55d72338dcc31847 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 11 Jul 2005 11:01:37 -0300 Subject: [PATCH] warnings from Visual C --- lparser.c | 4 ++-- ltable.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lparser.c b/lparser.c index ec928224..7a6bbcef 100644 --- a/lparser.c +++ b/lparser.c @@ -1,5 +1,5 @@ /* -** $Id: lparser.c,v 2.29 2005/06/13 14:15:54 roberto Exp roberto $ +** $Id: lparser.c,v 2.30 2005/06/13 14:25:29 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ @@ -300,7 +300,7 @@ static void enterlevel (LexState *ls) { #define leavelevel(ls) ((ls)->L->nCcalls--) -static void enterblock (FuncState *fs, BlockCnt *bl, int isbreakable) { +static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) { bl->breaklist = NO_JUMP; bl->isbreakable = isbreakable; bl->nactvar = fs->nactvar; diff --git a/ltable.c b/ltable.c index 07575f7d..73b59328 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.24 2005/05/20 15:53:42 roberto Exp roberto $ +** $Id: ltable.c,v 2.25 2005/05/31 14:25:18 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -376,7 +376,7 @@ void luaH_free (lua_State *L, Table *t) { } -static Node *getfreepos (lua_State *L, Table *t) { +static Node *getfreepos (Table *t) { while (t->lastfree-- > t->node) { if (ttisnil(gkey(t->lastfree))) return t->lastfree; @@ -397,7 +397,7 @@ static TValue *newkey (lua_State *L, Table *t, const TValue *key) { Node *mp = luaH_mainposition(t, key); if (!ttisnil(gval(mp)) || mp == &luaH_dummynode) { Node *othern; - Node *n = getfreepos(L, t); /* get a free place */ + Node *n = getfreepos(t); /* get a free place */ if (n == NULL) { /* cannot find a free place? */ rehash(L, t, key); /* grow table */ return luaH_set(L, t, key); /* re-insert key into grown table */