mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Fix indentation
Some lines seem to have gotten the wrong indentation, possibly caused by Meld which often ignores lines with only whitespace changes and leaves their previous indentation.
This commit is contained in:
parent
042b514235
commit
e59b70638c
1 changed files with 3 additions and 3 deletions
|
@ -102,7 +102,7 @@ local function runtimers(next_delay, min_wait)
|
|||
if peek > now then
|
||||
next_delay = peek - now;
|
||||
break;
|
||||
end
|
||||
end
|
||||
|
||||
local _, timer, id = timers:pop();
|
||||
local ok, ret = pcall(timer[2], now);
|
||||
|
@ -110,10 +110,10 @@ local function runtimers(next_delay, min_wait)
|
|||
local next_time = now+ret;
|
||||
timer[1] = next_time;
|
||||
timers:insert(timer, next_time);
|
||||
end
|
||||
end
|
||||
|
||||
peek = timers:peek();
|
||||
end
|
||||
end
|
||||
if peek == nil then
|
||||
return next_delay;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue