aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/macros_and_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros_and_utils.h b/src/macros_and_utils.h
index e184476..48ddba2 100644
--- a/src/macros_and_utils.h
+++ b/src/macros_and_utils.h
@@ -82,7 +82,7 @@ extern char const* debugspew_indent;
82 82
83#define ASSERT_L(c) _ASSERT_L(L,c) 83#define ASSERT_L(c) _ASSERT_L(L,c)
84 84
85inline void STACK_GROW(lua_State * L, int n_) 85static inline void STACK_GROW(lua_State * L, int n_)
86{ 86{
87 if (!lua_checkstack(L, n_)) 87 if (!lua_checkstack(L, n_))
88 luaL_error(L, "Cannot grow stack!"); 88 luaL_error(L, "Cannot grow stack!");