diff options
author | Araq <rumpf_a@web.de> | 2011-07-22 23:58:19 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-22 23:58:19 +0200 |
commit | 246b8d18a1102ddcb6435a67d6979fa2a48bf98e (patch) | |
tree | e7e164de8fc2c0998ab17447ab4cb7c5307ec802 /tests/accept/compile/tseqcon2.nim | |
parent | 569c1ce5ec7cedd2c28d3272aae92062638cad0d (diff) | |
download | Nim-246b8d18a1102ddcb6435a67d6979fa2a48bf98e.tar.gz |
tests repaired; serious typo in the allocator fixed; fixes #32
Diffstat (limited to 'tests/accept/compile/tseqcon2.nim')
-rwxr-xr-x | tests/accept/compile/tseqcon2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/accept/compile/tseqcon2.nim b/tests/accept/compile/tseqcon2.nim index 6225c3bb1..4f2763ffe 100755 --- a/tests/accept/compile/tseqcon2.nim +++ b/tests/accept/compile/tseqcon2.nim @@ -3,7 +3,7 @@ import os proc rec_dir(dir: string): seq[string] = result = @[] for kind, path in walk_dir(dir): - if kind == pcDirectory: + if kind == pcDir: add(result, rec_dir(path)) else: add(result, path) |