diff options
author | william <william@25tandclement.com> | 2014-09-22 14:53:58 -0700 |
---|---|---|
committer | william <william@25tandclement.com> | 2014-09-22 14:53:58 -0700 |
commit | a5d3fa1f606facb9d169b0821172e4a0e416386f (patch) | |
tree | 7239ed7043f6130eab35e59852bf22d9342d8370 /src | |
parent | dd6fc421c3544c07751ce4a3fd2c6bfdefcebd85 (diff) | |
download | luaossl-a5d3fa1f606facb9d169b0821172e4a0e416386f.tar.gz luaossl-a5d3fa1f606facb9d169b0821172e4a0e416386f.tar.bz2 luaossl-a5d3fa1f606facb9d169b0821172e4a0e416386f.zip |
unbreak Lua 5.1 for real this time
Diffstat (limited to 'src')
-rw-r--r-- | src/compat52.h | 2 |
1 files changed, 1 insertions, 1 deletions
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() */ |