aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lanes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lanes.c b/src/lanes.c
index 9b95469..8852687 100644
--- a/src/lanes.c
+++ b/src/lanes.c
@@ -2419,13 +2419,13 @@ LUAG_FUNC( lane_new)
2419 lua_sethook( L2, cancel_hook, LUA_MASKCOUNT, cancelstep_idx); 2419 lua_sethook( L2, cancel_hook, LUA_MASKCOUNT, cancelstep_idx);
2420 } 2420 }
2421 2421
2422 STACK_END( L, 1);
2423 STACK_END( L2, 1 + nargs);
2424
2422 DEBUGSPEW_CODE( fprintf( stderr, INDENT_BEGIN "lane_new: launching thread\n" INDENT_END)); 2425 DEBUGSPEW_CODE( fprintf( stderr, INDENT_BEGIN "lane_new: launching thread\n" INDENT_END));
2423 THREAD_CREATE( &s->thread, lane_main, s, priority); 2426 THREAD_CREATE( &s->thread, lane_main, s, priority);
2424 2427
2425 DEBUGSPEW_CODE( -- U->debugspew_indent_depth); 2428 DEBUGSPEW_CODE( -- U->debugspew_indent_depth);
2426
2427 STACK_END( L, 1);
2428 STACK_END( L2, 1 + nargs);
2429 return 1; 2429 return 1;
2430} 2430}
2431 2431