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 d02dc031..7b223bcb 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 2.243 2017/12/20 14:58:05 roberto Exp roberto $ 2** $Id: lgc.c,v 2.244 2017/12/28 15:42:57 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*/
@@ -107,7 +107,7 @@ static lu_mem atomic (lua_State *L);
107/* 107/*
108** one after last element in a hash array 108** one after last element in a hash array
109*/ 109*/
110#define gnodelast(h) gnode(h, cast(size_t, sizenode(h))) 110#define gnodelast(h) gnode(h, cast_sizet(sizenode(h)))
111 111
112 112
113/* 113/*