commit d89a56f86921dc3c62edf0345748ba5c41b2632c
parent 334ba8132bd0471ffe2a9964b577d3ae89ec490a
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Tue, 18 Jan 2005 15:23:03 -0200
small warning in C++
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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