aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index ff86d825..aa9687ae 100644
--- a/lstate.h
+++ b/lstate.h
@@ -259,7 +259,7 @@ struct CallInfo {
259#define getcistrecst(ci) (((ci)->callstatus >> CIST_RECST) & 7) 259#define getcistrecst(ci) (((ci)->callstatus >> CIST_RECST) & 7)
260#define setcistrecst(ci,st) \ 260#define setcistrecst(ci,st) \
261 check_exp(((st) & 7) == (st), /* status must fit in three bits */ \ 261 check_exp(((st) & 7) == (st), /* status must fit in three bits */ \
262 ((ci)->callstatus = ((ci)->callstatus & ~(7 << CIST_RECST)) \ 262 ((ci)->callstatus = ((ci)->callstatus & ~(7u << CIST_RECST)) \
263 | (cast(l_uint32, st) << CIST_RECST))) 263 | (cast(l_uint32, st) << CIST_RECST)))
264 264
265 265