diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-15 01:05:59 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-15 01:05:59 +0200 |
commit | afea46904dc04f7e2cf2c0274a6079c219bab873 (patch) | |
tree | 03fb8b979e5ad91669d2df17f37207f04f39fb49 | |
parent | 0b1a99c72c2e8150360a5218f05f640dd39aecf0 (diff) | |
download | prosody-afea46904dc04f7e2cf2c0274a6079c219bab873.tar.gz prosody-afea46904dc04f7e2cf2c0274a6079c219bab873.zip |
util.poll: Remove 'inline' from function declaration
Why does this fix building?
-rw-r--r-- | util-src/poll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/poll.c b/util-src/poll.c index d0894c54..e80850d2 100644 --- a/util-src/poll.c +++ b/util-src/poll.c @@ -228,7 +228,7 @@ int Ldel(lua_State *L) { /* * Check previously manipulated event state for FDs ready for reading or writing */ -inline int Lpushevent(lua_State *L, struct Lpoll_state *state) { +int Lpushevent(lua_State *L, struct Lpoll_state *state) { #ifdef USE_EPOLL if(state->processed > 0) { |