From: ben Date: Wed, 19 Sep 2012 22:16:30 +0000 (+0000) Subject: Fix indentation mess in my timing overhaul. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/38bf0b126aa96be32e1813a8885dcc63766a6be8 Fix indentation mess in my timing overhaul. git-svn-id: svn://svn.tartarus.org/sgt/putty@9675 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/windows/winplink.c b/windows/winplink.c index 0abed7ce..dfbb80d8 100644 --- a/windows/winplink.c +++ b/windows/winplink.c @@ -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; }