util.poll: Fix inverted logic
authorKim Alvefur <zash@zash.se>
Thu, 11 Oct 2018 18:56:11 +0200
changeset 9481 bd178ed0459b
parent 9480 0738f5276e0a
child 9482 3a683b2476e2
util.poll: Fix inverted logic
util-src/poll.c
--- a/util-src/poll.c	Thu Oct 11 18:53:15 2018 +0200
+++ b/util-src/poll.c	Thu Oct 11 18:56:11 2018 +0200
@@ -351,7 +351,7 @@
 int Lgc(lua_State *L) {
 	struct Lpoll_state *state = luaL_checkudata(L, 1, STATE_MT);
 
-	if(state->epoll_fd != -1) {
+	if(state->epoll_fd == -1) {
 		return 0;
 	}