Changeset

7799:93643a61858a

server_epoll: Ignore unused loop variable [luacheck]
author Kim Alvefur <zash@zash.se>
date Sun, 01 Jan 2017 19:41:03 +0100
parents 7798:74cfec1fe5a2
children 7800:dadf9ba290c5
files net/server_epoll.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/net/server_epoll.lua	Sun Jan 01 19:35:06 2017 +0100
+++ b/net/server_epoll.lua	Sun Jan 01 19:41:03 2017 +0100
@@ -605,7 +605,7 @@
 end
 
 local function closeall()
-	for fd, conn in pairs(fds) do
+	for fd, conn in pairs(fds) do -- luacheck: ignore 213/fd
 		conn:close();
 	end
 end