Browse Source

[Minor] Fix forwarded declarations

Issue: #2707
Closes: #2707
tags/1.9.0
Vsevolod Stakhov 5 years ago
parent
commit
3c70c015b4
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/lua/lua_dns_resolver.h

+ 3
- 3
src/lua/lua_dns_resolver.h View File

@@ -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

Loading…
Cancel
Save