From 413a393e6222482f46599e138bebac162610a572 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 29 Oct 2022 12:06:37 -0300 Subject: Stack indices changed to union's That will allow to change pointers to offsets while reallocating the stack. --- ldebug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldebug.h') diff --git a/ldebug.h b/ldebug.h index 974960e9..2c3074c6 100644 --- a/ldebug.h +++ b/ldebug.h @@ -15,7 +15,7 @@ /* Active Lua function (given call info) */ -#define ci_func(ci) (clLvalue(s2v((ci)->func))) +#define ci_func(ci) (clLvalue(s2v((ci)->func.p))) #define resethookcount(L) (L->hookcount = L->basehookcount) -- cgit v1.2.3-55-g6feb