From 897029153f403314325749fa359546cb34912394 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 19 Sep 2012 22:16:30 +0000 Subject: [PATCH] Fix indentation mess in my timing overhaul. [originally from svn r9675] --- windows/winplink.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; }