summary refs log tree commit diff stats
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-03-26 01:12:45 +0100
committerdef <dennis@felsin9.de>2015-03-26 01:12:45 +0100
commit450c2c528779420c591489a561c08c008d2a8a7a (patch)
tree74d23c735681b7cb219982eeaece9e1da751f7f2
parente680e43fc2885c3af611c99c47ba5f2ac098b33e (diff)
downloadNim-450c2c528779420c591489a561c08c008d2a8a7a.tar.gz
Fix proc call in gc_ms
This fixes compilation with --gc:markandsweep -d:gcUseBitvectors
-rw-r--r--lib/system/gc_ms.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/gc_ms.nim b/lib/system/gc_ms.nim
index 12eb97b1e..e287bf5d9 100644
--- a/lib/system/gc_ms.nim
+++ b/lib/system/gc_ms.nim
@@ -165,7 +165,7 @@ proc initGC() =
     init(gch.tempStack)
     init(gch.additionalRoots)
     when withBitvectors:
-      Init(gch.allocated)
+      init(gch.allocated)
       init(gch.marked)
 
 var