mildly less confusing

This commit is contained in:
Kartik K. Agaram 2021-10-24 09:58:47 -07:00
parent 7b285449c3
commit e3b1ac2c83
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
void *l = (*f)(ud, NULL, 0, sizeof(LG));
if (l == NULL) return NULL;
L = cast(lua_State*, l);
g = &cast(LG *, L)->g;
g = &cast(LG *, l)->g;
L->next = NULL;
L->tt = LUA_TTHREAD;
g->currentwhite = bit2mask(WHITE0BIT, FIXEDBIT);