1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-10 07:38:06 -05:00

Fix indentation mess in my timing overhaul.

[originally from svn r9675]
This commit is contained in:
Ben Harris 2012-09-19 22:16:30 +00:00
parent a3aca31b55
commit 897029153f

View File

@ -636,12 +636,12 @@ int main(int argc, char **argv)
}
if (run_timers(now, &next)) {
then = now;
now = GETTICKCOUNT();
if (now - then > next - then)
ticks = 0;
else
ticks = next - now;
then = now;
now = GETTICKCOUNT();
if (now - then > next - then)
ticks = 0;
else
ticks = next - now;
} else {
ticks = INFINITE;
}