From 7e134b53886c29b5da0476d6a99b83eaa0b9bdbe Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Mon, 16 May 2016 15:29:51 +0200 Subject: [PATCH] fixes #3793 --- lib/system/gc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/gc.nim b/lib/system/gc.nim index a408c3b4be..767831fc23 100644 --- a/lib/system/gc.nim +++ b/lib/system/gc.nim @@ -909,7 +909,7 @@ when not defined(useNimRtl): "[GC] max threshold: " & $gch.stat.maxThreshold & "\n" & "[GC] zct capacity: " & $gch.zct.cap & "\n" & "[GC] max cycle table size: " & $gch.stat.cycleTableSize & "\n" & - "[GC] max pause time [ms]: " & $(gch.stat.maxPause div 1000_000) + "[GC] max pause time [ms]: " & $(gch.stat.maxPause div 1000_000) & "\n" when defined(nimCoroutines): result = result & "[GC] number of stacks: " & $gch.stack.len & "\n" for stack in items(gch.stack):