From d89a56f86921dc3c62edf0345748ba5c41b2632c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 18 Jan 2005 15:23:25 -0200 Subject: small warning in C++ --- ldblib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ldblib.c b/ldblib.c index f56bcae0..919b2766 100644 --- a/ldblib.c +++ b/ldblib.c @@ -1,5 +1,5 @@ /* -** $Id: ldblib.c,v 1.90 2005/01/10 16:30:59 roberto Exp roberto $ +** $Id: ldblib.c,v 1.91 2005/01/10 17:21:10 roberto Exp roberto $ ** Interface from Lua to its debug API ** See Copyright Notice in lua.h */ @@ -281,7 +281,7 @@ static int errorfb (lua_State *L) { lua_State *L1 = getthread(L, &arg); lua_Debug ar; if (lua_isnumber(L, arg+2)) { - level = lua_tonumber(L, arg+2); + level = lua_tointeger(L, arg+2); lua_pop(L, 1); } else -- cgit v1.2.3-55-g6feb