aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index 2b52c83b..b86d3452 100644
--- a/llimits.h
+++ b/llimits.h
@@ -99,7 +99,7 @@ typedef LUAI_UACINT l_uacInt;
99** assertion for checking API calls 99** assertion for checking API calls
100*/ 100*/
101#if !defined(luai_apicheck) 101#if !defined(luai_apicheck)
102#define luai_apicheck(l,e) lua_assert(e) 102#define luai_apicheck(l,e) ((void)l, lua_assert(e))
103#endif 103#endif
104 104
105#define api_check(l,e,msg) luai_apicheck(l,(e) && msg) 105#define api_check(l,e,msg) luai_apicheck(l,(e) && msg)