From 20974430a199d98c59743e6a41e44e61320855d1 Mon Sep 17 00:00:00 2001 From: sanine Date: Sun, 19 Sep 2021 12:59:51 -0500 Subject: fix link issue with hs_call --- src/hs_traceback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/hs_traceback.c b/src/hs_traceback.c index 0fc8266..1830721 100644 --- a/src/hs_traceback.c +++ b/src/hs_traceback.c @@ -27,7 +27,7 @@ int hs_traceback(lua_State *L) int hs_call(lua_State *L, int nargs, int nret) { - int insert_pos = lua_gettop(L) - nargs; + int traceback_pos = lua_gettop(L) - nargs; lua_pushcfunction(L, hs_traceback); lua_insert(L, traceback_pos); -- cgit v1.2.1