mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
Fix compile because of case sensitivity
This commit is contained in:
@@ -45,7 +45,7 @@ var
|
||||
when noDeadlocks:
|
||||
var
|
||||
locksLen {.threadvar.}: int
|
||||
locks {.threadvar.}: array [0..MaxLocksPerThread-1, pointer]
|
||||
locks {.threadvar.}: array [0..maxLocksPerThread-1, pointer]
|
||||
|
||||
proc orderedLocks(): bool =
|
||||
for i in 0 .. locksLen-2:
|
||||
|
||||
Reference in New Issue
Block a user