aboutsummaryrefslogtreecommitdiff
path: root/lbaselib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lbaselib.c')
-rw-r--r--lbaselib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbaselib.c b/lbaselib.c
index 036a4c9d..c3a8cb5e 100644
--- a/lbaselib.c
+++ b/lbaselib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbaselib.c,v 1.152 2004/07/02 18:09:11 roberto Exp roberto $ 2** $Id: lbaselib.c,v 1.153 2004/07/09 16:01:38 roberto Exp roberto $
3** Basic library 3** Basic library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -195,7 +195,7 @@ static int luaB_collectgarbage (lua_State *L) {
195 195
196static int luaB_type (lua_State *L) { 196static int luaB_type (lua_State *L) {
197 luaL_checkany(L, 1); 197 luaL_checkany(L, 1);
198 lua_pushstring(L, lua_typename(L, lua_type(L, 1))); 198 lua_pushstring(L, luaL_typename(L, 1));
199 return 1; 199 return 1;
200} 200}
201 201