diff options
Diffstat (limited to 'src/compat52.h')
-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() */ |