fix lua you all need this

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14766 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-09-04 16:02:31 +00:00
parent 105f5d4396
commit bafa43a401
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ void mod_lua_conjure_session(lua_State * L, switch_core_session_t *session, cons
{
Session *result = new Session(session);
SWIG_NewPointerObj(L, result, SWIGTYPE_p_CoreSession, destroy_me);
SWIG_NewPointerObj(L, result, SWIGTYPE_p_LUA__Session, destroy_me);
lua_setglobal(L, name);
}