diff options
Diffstat (limited to 'lbaselib.c')
-rw-r--r-- | lbaselib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
196 | static int luaB_type (lua_State *L) { | 196 | static 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 | ||