summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2019-03-11 11:47:01 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2019-03-11 11:47:01 +0000
commit3c70c015b44d4ab2cf5740df3828c14648e4ea27 (patch)
treebdec5e726908ea837ea5f694755cb3e6805aa292 /src
parentfddff8187c824b52740f0d7791fdb4e33e560edc (diff)
downloadrspamd-3c70c015b44d4ab2cf5740df3828c14648e4ea27.tar.gz
rspamd-3c70c015b44d4ab2cf5740df3828c14648e4ea27.zip
[Minor] Fix forwarded declarations
Issue: #2707 Closes: #2707
Diffstat (limited to 'src')
-rw-r--r--src/lua/lua_dns_resolver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lua/lua_dns_resolver.h b/src/lua/lua_dns_resolver.h
index f5c71aa0b..ef42832a6 100644
--- a/src/lua/lua_dns_resolver.h
+++ b/src/lua/lua_dns_resolver.h
@@ -1,7 +1,7 @@
#ifndef RSPAMD_LUA_DNS_H
#define RSPAMD_LUA_DNS_H
-typedef struct lua_State lua_State;
+struct lua_State;
struct rdns_reply;
/**
@@ -11,6 +11,6 @@ struct rdns_reply;
* @param reply
*/
void
-lua_push_dns_reply (lua_State *L, const struct rdns_reply *reply);
+lua_push_dns_reply (struct lua_State *L, const struct rdns_reply *reply);
-#endif //RSPAMD_LUA_DNS_H
+#endif