diff options
author | pixel <pixel> | 2007-05-30 06:40:09 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-05-30 06:40:09 +0000 |
commit | 201cd989c8c9850e05bc56e1eb28d3714c919ec9 (patch) | |
tree | 5381d106e5654a16002ce24632f714a4ad30535b | |
parent | 894c6aa0dd25631eed977da67e99f934be14611d (diff) |
Compilation fix.
-rw-r--r-- | lib/BLua.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 9f77b55..45430ee 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: BLua.cc,v 1.45 2007-05-30 06:36:07 pixel Exp $ */ +/* $Id: BLua.cc,v 1.46 2007-05-30 06:40:09 pixel Exp $ */ #include <stdlib.h> #include "BLua.h" @@ -966,7 +966,7 @@ void Lua::dumpvars_r(Handle * h, int i, int depth) throw (GeneralException) { (*h) << "userdata ...\n"; break; case LUA_TTHREAD: - (*) << "thread ...\n"; + (*h) << "thread ...\n"; break; default: throw LuaException("Internal error: got unknow index for value while dumpvars."); |