summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2015-03-26 02:19:33 +0100
committerAndreas Rumpf <rumpf_a@web.de>2015-03-26 02:19:33 +0100
commit95ccb3c035921f9c7247f1d5ca5e6ce35cdaaf3d (patch)
tree151cd99d7eaa4d6ebf95d8a5ba6e2824c26f37b2
parent5d63ecb3a474a157f46019770c8288bb134e9aa9 (diff)
parent450c2c528779420c591489a561c08c008d2a8a7a (diff)
downloadNim-95ccb3c035921f9c7247f1d5ca5e6ce35cdaaf3d.tar.gz
Merge pull request #2413 from def-/fix-gcusebitvectors
Fix proc call in gc_ms
-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