mirror of https://github.com/rusefi/lua.git
avoid "strong" cast
This commit is contained in:
parent
de0f51a02c
commit
4fd76b8148
5
lgc.c
5
lgc.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lgc.c,v 2.93 2010/05/10 16:46:49 roberto Exp roberto $
|
** $Id: lgc.c,v 2.94 2010/05/10 18:23:45 roberto Exp roberto $
|
||||||
** Garbage Collector
|
** Garbage Collector
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -902,7 +902,8 @@ static l_mem singlestep (lua_State *L) {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* sweep main thread */
|
/* sweep main thread */
|
||||||
sweeplist(L, cast(GCObject **, &g->mainthread), 1);
|
GCObject *mt = obj2gco(g->mainthread);
|
||||||
|
sweeplist(L, &mt, 1);
|
||||||
checkSizes(L);
|
checkSizes(L);
|
||||||
g->gcstate = GCSpause; /* finish collection */
|
g->gcstate = GCSpause; /* finish collection */
|
||||||
return GCSWEEPCOST;
|
return GCSWEEPCOST;
|
||||||
|
|
Loading…
Reference in New Issue