From 5cf4979c3ee7052bbb363bf75463fb861e6ac1e5 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 4 Feb 2014 09:20:09 +0100 Subject: Fix compilation error against Lua 5.1 --- src/lanes.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lanes.c b/src/lanes.c index 270c01d..64c144c 100644 --- a/src/lanes.c +++ b/src/lanes.c @@ -216,7 +216,9 @@ static void securize_debug_threadname( lua_State* L, struct s_lane* s) STACK_GROW( L, 3); lua_getuservalue( L, 1); lua_newtable( L); - s->debug_name = lua_pushstring( L, s->debug_name); + // Lua 5.1 can't do 's->debug_name = lua_pushstring( L, s->debug_name);' + lua_pushstring( L, s->debug_name); + s->debug_name = lua_tostring( L, -1); lua_rawset( L, -3); lua_pop( L, 1); STACK_END( L, 0); -- cgit v1.2.3-55-g6feb