diff options
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -330,7 +330,7 @@ static void reallymarkobject (global_State *g, GCObject *o) { | |||
330 | */ | 330 | */ |
331 | static void markmt (global_State *g) { | 331 | static void markmt (global_State *g) { |
332 | int i; | 332 | int i; |
333 | for (i=0; i < LUA_NUMTAGS; i++) | 333 | for (i=0; i < LUA_NUMTYPES; i++) |
334 | markobjectN(g, g->mt[i]); | 334 | markobjectN(g, g->mt[i]); |
335 | } | 335 | } |
336 | 336 | ||