From ddeed6873e5d6b759da52de91c23c8ea1224f217 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 26 Apr 2015 12:38:37 +0200 Subject: util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1 --- util-src/net.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'util-src/net.c') diff --git a/util-src/net.c b/util-src/net.c index ad09d041..3ccc7618 100644 --- a/util-src/net.c +++ b/util-src/net.c @@ -26,8 +26,8 @@ #include #include -#if (LUA_VERSION_NUM == 502) -#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0) +#if (LUA_VERSION_NUM == 501) +#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R) #endif /* Enumerate all locally configured IP addresses */ @@ -131,6 +131,6 @@ int luaopen_util_net(lua_State* L) { }; lua_newtable(L); - luaL_register(L, NULL, exports); + luaL_setfuncs(L, exports, 0); return 1; } -- cgit v1.2.3