Diff

util-src/poll.c @ 9478:bd178ed0459b

util.poll: Fix inverted logic
author Kim Alvefur <zash@zash.se>
date Thu, 11 Oct 2018 18:56:11 +0200
parent 9476:f3935aa4cc7e
child 9506:ae6636052be9
line wrap: on
line diff
--- 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;
 	}