From a5d3fa1f606facb9d169b0821172e4a0e416386f Mon Sep 17 00:00:00 2001 From: william Date: Mon, 22 Sep 2014 14:53:58 -0700 Subject: unbreak Lua 5.1 for real this time --- src/compat52.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat52.h b/src/compat52.h index e64edd9..0057b3c 100644 --- a/src/compat52.h +++ b/src/compat52.h @@ -152,7 +152,7 @@ typedef struct luaL_Stream { #define lua_pushstring(...) lua52_pushstring(__VA_ARGS__) static const char *lua52_pushstring(lua_State *L, const char *s) { - lua_pushstring(L, s); + (lua_pushstring)(L, s); return lua_tostring(L, -1); } /* lua52_pushstring() */ -- cgit v1.2.3-59-g8ed1b