Fix indentation mess in my timing overhaul.
authorben <ben@cda61777-01e9-0310-a592-d414129be87e>
Wed, 19 Sep 2012 22:16:30 +0000 (22:16 +0000)
committerben <ben@cda61777-01e9-0310-a592-d414129be87e>
Wed, 19 Sep 2012 22:16:30 +0000 (22:16 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@9675 cda61777-01e9-0310-a592-d414129be87e

windows/winplink.c

index 0abed7c..dfbb80d 100644 (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;
        }