diff options
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |