diff options
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 { | |||
152 | #define lua_pushstring(...) lua52_pushstring(__VA_ARGS__) | 152 | #define lua_pushstring(...) lua52_pushstring(__VA_ARGS__) |
153 | 153 | ||
154 | static const char *lua52_pushstring(lua_State *L, const char *s) { | 154 | static const char *lua52_pushstring(lua_State *L, const char *s) { |
155 | lua_pushstring(L, s); | 155 | (lua_pushstring)(L, s); |
156 | return lua_tostring(L, -1); | 156 | return lua_tostring(L, -1); |
157 | } /* lua52_pushstring() */ | 157 | } /* lua52_pushstring() */ |
158 | 158 | ||