From 1e5e8354d77a70d991af6d8c47c58af1c2629a36 Mon Sep 17 00:00:00 2001 From: Cloud Wu Date: Mon, 11 Jan 2021 17:20:16 +0800 Subject: [PATCH] stm_copy.reference is _Atomic type, #1317 --- lualib-src/lua-stm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lualib-src/lua-stm.c b/lualib-src/lua-stm.c index 86502c91..3926dd38 100644 --- a/lualib-src/lua-stm.c +++ b/lualib-src/lua-stm.c @@ -18,7 +18,7 @@ struct stm_object { }; struct stm_copy { - int reference; + ATOM_INT reference; uint32_t sz; void * msg; };