aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2013-02-05 17:36:13 +0100
committerBenoit Germain <bnt.germain@gmail.com>2013-02-05 17:36:13 +0100
commit131c11c2ae327de5b4db743a6a81eb9b57470d0e (patch)
tree40e5443dcdecdbf30d3ab5ffba10747d622b9409
parent5a5fb7c8b359582bb684c1389598a83c726eb73f (diff)
downloadlanes-131c11c2ae327de5b4db743a6a81eb9b57470d0e.tar.gz
lanes-131c11c2ae327de5b4db743a6a81eb9b57470d0e.tar.bz2
lanes-131c11c2ae327de5b4db743a6a81eb9b57470d0e.zip
Fix issue #45
-rw-r--r--src/tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools.c b/src/tools.c
index 0fcb2f1..13a3ebd 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -1438,7 +1438,7 @@ static bool_t inter_copy_one_( lua_State *L2, uint_t L2_cache_i, lua_State *L, u
1438static void inter_copy_func( lua_State* L2, uint_t L2_cache_i, lua_State* L, uint_t i) 1438static void inter_copy_func( lua_State* L2, uint_t L2_cache_i, lua_State* L, uint_t i)
1439{ 1439{
1440 FuncSubType funcSubType; 1440 FuncSubType funcSubType;
1441 lua_CFunction cfunc = luaG_tocfunction( L, i, &funcSubType); // NULL for LuaJIT-fast && bytecode functions 1441 /*lua_CFunction cfunc =*/ luaG_tocfunction( L, i, &funcSubType); // NULL for LuaJIT-fast && bytecode functions
1442 1442
1443 ASSERT_L( L2_cache_i != 0); // ... {cache} ... p 1443 ASSERT_L( L2_cache_i != 0); // ... {cache} ... p
1444 STACK_GROW(L,2); 1444 STACK_GROW(L,2);