summaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_nodetimer.h
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-04-08 09:28:37 +0200
committerGitHub <noreply@github.com>2017-04-08 09:28:37 +0200
commit41c54830242269de073e4a0c10d1775dfdf6811d (patch)
tree5e432420281b966cce7ff1638ccfd618a393a6b3 /src/script/lua_api/l_nodetimer.h
parent01f9d05f2358f0771bd77fde6ca67192ebd6ceac (diff)
downloadminetest-41c54830242269de073e4a0c10d1775dfdf6811d.tar.gz
minetest-41c54830242269de073e4a0c10d1775dfdf6811d.tar.bz2
minetest-41c54830242269de073e4a0c10d1775dfdf6811d.zip
Replace luaL_reg with luaL_Reg as recent LuaJIT dropped the Lua 5.0 compat (#5541)
We are bundling Lua5.1 which has same macro
Diffstat (limited to 'src/script/lua_api/l_nodetimer.h')
-rw-r--r--src/script/lua_api/l_nodetimer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/lua_api/l_nodetimer.h b/src/script/lua_api/l_nodetimer.h
index 239112037..ae362d8b3 100644
--- a/src/script/lua_api/l_nodetimer.h
+++ b/src/script/lua_api/l_nodetimer.h
@@ -32,7 +32,7 @@ private:
ServerEnvironment *m_env;
static const char className[];
- static const luaL_reg methods[];
+ static const luaL_Reg methods[];
static int gc_object(lua_State *L);