1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-19 03:58:05 -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)) { if (run_timers(now, &next)) {
then = now; then = now;
now = GETTICKCOUNT(); now = GETTICKCOUNT();
if (now - then > next - then) if (now - then > next - then)
ticks = 0; ticks = 0;
else else
ticks = next - now; ticks = next - now;
} else { } else {
ticks = INFINITE; ticks = INFINITE;
} }