net.server_epoll: Remove an unused variable [luacheck]
authorKim Alvefur <zash@zash.se>
Mon, 23 Dec 2019 21:51:52 +0100
changeset 10550 944863f878b9
parent 10549 2fbcdf6da331
child 10551 c77471c180ea
net.server_epoll: Remove an unused variable [luacheck]
net/server_epoll.lua
--- a/net/server_epoll.lua	Mon Dec 23 21:43:34 2019 +0100
+++ b/net/server_epoll.lua	Mon Dec 23 21:51:52 2019 +0100
@@ -114,7 +114,7 @@
 			break;
 		end
 
-		local _, timer, id = timers:pop();
+		local _, timer = timers:pop();
 		local ok, ret = pcall(timer[2], now);
 		if ok and type(ret) == "number"  then
 			local next_time = elapsed+ret;