diff options
-rw-r--r-- | lanes-3.17.1-0.rockspec | 4 | ||||
-rw-r--r-- | src/macros_and_utils.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lanes-3.17.1-0.rockspec b/lanes-3.17.1-0.rockspec index 69ee515..a2dc3af 100644 --- a/lanes-3.17.1-0.rockspec +++ b/lanes-3.17.1-0.rockspec | |||
@@ -7,11 +7,11 @@ | |||
7 | 7 | ||
8 | package = "Lanes" | 8 | package = "Lanes" |
9 | 9 | ||
10 | version = "3.17.0-0" | 10 | version = "3.17.1-0" |
11 | 11 | ||
12 | source= { | 12 | source= { |
13 | url= "git+https://github.com/LuaLanes/lanes.git", | 13 | url= "git+https://github.com/LuaLanes/lanes.git", |
14 | branch= "v3.17.0" | 14 | branch= "v3.17.1" |
15 | } | 15 | } |
16 | 16 | ||
17 | description = { | 17 | description = { |
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 | ||
85 | inline void STACK_GROW(lua_State * L, int n_) | 85 | static 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!"); |