From 8eb0abc9db4d47db5192bed18565e3d1aa53566d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 13 Jan 2024 18:10:50 -0300 Subject: Removed uses of LUA_NUMTAGS That constant was already deprecated (see commit 6aabf4b15e7). --- lgc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lgc.c') diff --git a/lgc.c b/lgc.c index 4cdea02a..f813038f 100644 --- a/lgc.c +++ b/lgc.c @@ -330,7 +330,7 @@ static void reallymarkobject (global_State *g, GCObject *o) { */ static void markmt (global_State *g) { int i; - for (i=0; i < LUA_NUMTAGS; i++) + for (i=0; i < LUA_NUMTYPES; i++) markobjectN(g, g->mt[i]); } -- cgit v1.2.3-55-g6feb