summaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 2988467c..c9c6628c 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 2.76 2010/04/02 14:37:41 roberto Exp roberto $ 2** $Id: lgc.c,v 2.77 2010/04/05 14:15:35 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -213,7 +213,7 @@ static void reallymarkobject (global_State *g, GCObject *o) {
213 213
214static void markmt (global_State *g) { 214static void markmt (global_State *g) {
215 int i; 215 int i;
216 for (i=0; i<NUM_TAGS; i++) 216 for (i=0; i < LUA_NUMTAGS; i++)
217 markobject(g, g->mt[i]); 217 markobject(g, g->mt[i]);
218} 218}
219 219