From d34f06ea496c2bd886de0f8a2087a36dca7b1157 Mon Sep 17 00:00:00 2001 From: batrick Date: Sat, 21 Jun 2008 13:33:53 +0000 Subject: [PATCH] Fixed a compile error. --- nse_init.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_init.cc b/nse_init.cc index c658d1800..b1b427152 100644 --- a/nse_init.cc +++ b/nse_init.cc @@ -276,7 +276,7 @@ int init_lua (lua_State *L) } lua_pop(L, 1); // _LOADED - lua_getglobal(L, -1, "debug"); // _LOADED.debug + lua_getglobal(L, "debug"); // _LOADED.debug lua_getfield(L, -1, "traceback"); lua_pushcclosure(L, error_function, 1); errfunc = luaL_ref(L, LUA_REGISTRYINDEX);