From 3d0e695e8ccd505066c806193f4c17487200fce3 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Tue, 21 Oct 2014 16:38:27 -0500 Subject: [skip ci] rts: Detabify Proftimer.c Signed-off-by: Austin Seipp --- rts/Proftimer.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rts') diff --git a/rts/Proftimer.c b/rts/Proftimer.c index 6458f6e095..d1736f722b 100644 --- a/rts/Proftimer.c +++ b/rts/Proftimer.c @@ -50,9 +50,9 @@ stopHeapProfTimer( void ) void startHeapProfTimer( void ) { - if (RtsFlags.ProfFlags.doHeapProfile && + if (RtsFlags.ProfFlags.doHeapProfile && RtsFlags.ProfFlags.heapProfileIntervalTicks > 0) { - do_heap_prof_ticks = rtsTrue; + do_heap_prof_ticks = rtsTrue; } } @@ -82,10 +82,10 @@ handleProfTick(void) #endif if (do_heap_prof_ticks) { - ticks_to_heap_profile--; - if (ticks_to_heap_profile <= 0) { + ticks_to_heap_profile--; + if (ticks_to_heap_profile <= 0) { ticks_to_heap_profile = RtsFlags.ProfFlags.heapProfileIntervalTicks; - performHeapProfile = rtsTrue; - } + performHeapProfile = rtsTrue; + } } } -- cgit v1.2.1