diff options
author | Kevin Buhr <buhr@asaurus.net> | 2019-12-04 20:41:21 -0600 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-31 23:44:39 -0500 |
commit | c4279ff18070c398b5ddc677f9c5a915de68dafc (patch) | |
tree | c9e42f324e7d22c492b515770e43251400a156d8 | |
parent | dd4b65519f99e85a7e8f5c2dcb654a8d463c8858 (diff) | |
download | haskell-c4279ff18070c398b5ddc677f9c5a915de68dafc.tar.gz |
Fix some sloppy indentation
-rw-r--r-- | rts/Timer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/Timer.c b/rts/Timer.c index 6bc7162acd..057cffc7c9 100644 --- a/rts/Timer.c +++ b/rts/Timer.c @@ -117,7 +117,7 @@ handle_tick(int unused STG_UNUSED) if (RtsFlags.GcFlags.doIdleGC) { recent_activity = ACTIVITY_INACTIVE; inter_gc_ticks_to_gc = RtsFlags.GcFlags.interIdleGCWait / - RtsFlags.MiscFlags.tickInterval; + RtsFlags.MiscFlags.tickInterval; #if defined(THREADED_RTS) wakeUpRts(); // The scheduler will call stopTimer() when it has done @@ -139,8 +139,8 @@ handle_tick(int unused STG_UNUSED) #endif } } else { - if (idle_ticks_to_gc) idle_ticks_to_gc--; - if (inter_gc_ticks_to_gc) inter_gc_ticks_to_gc--; + if (idle_ticks_to_gc) idle_ticks_to_gc--; + if (inter_gc_ticks_to_gc) inter_gc_ticks_to_gc--; } break; default: |