aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-25 10:38:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-25 10:38:47 -0200
commite47baca75a3854c9f3065c554d6758bd23c5d73f (patch)
treea6b5edaa570a008e2880a53455654df069088540 /lgc.c
parentb8a680c11452b9e305b66400952f3bf702bf2dd5 (diff)
downloadlua-e47baca75a3854c9f3065c554d6758bd23c5d73f.tar.gz
lua-e47baca75a3854c9f3065c554d6758bd23c5d73f.tar.bz2
lua-e47baca75a3854c9f3065c554d6758bd23c5d73f.zip
warnings from Visual C++
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 39ac7b5c..a42b947f 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 1.162 2002/11/21 17:19:11 roberto Exp roberto $ 2** $Id: lgc.c,v 1.163 2002/11/22 18:01:46 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*/
@@ -486,7 +486,7 @@ void luaC_collectgarbage (lua_State *L) {
486} 486}
487 487
488 488
489void luaC_link (lua_State *L, GCObject *o, int tt) { 489void luaC_link (lua_State *L, GCObject *o, lu_byte tt) {
490 o->gch.next = G(L)->rootgc; 490 o->gch.next = G(L)->rootgc;
491 G(L)->rootgc = o; 491 G(L)->rootgc = o;
492 o->gch.marked = 0; 492 o->gch.marked = 0;