make niminst compile again

This commit is contained in:
Araq
2017-12-16 01:56:38 +01:00
parent 190f706a10
commit 35133d97ef

View File

@@ -15,7 +15,7 @@ when haveZipLib:
import
os, osproc, strutils, parseopt, parsecfg, strtabs, streams, debcreation,
securehash
"../../compiler/securehash"
const
maxOS = 20 # max number of OSes
@@ -283,7 +283,7 @@ proc yesno(p: var CfgParser, v: string): bool =
else: quit(errorStr(p, "unknown value; use: yes|no"))
proc incl(s: var seq[string], x: string): int =
for i in 0.. <s.len:
for i in 0 ..< s.len:
if cmpIgnoreStyle(s[i], x) == 0: return i
s.add(x)
result = s.len-1