diff options
Diffstat (limited to 'lib/pure/os.nim')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index ee40a24c7..9ee6a4d4f 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1849,7 +1849,7 @@ proc expandFilename*(filename: string): string {.rtl, extern: "nos$1", break # getFullPathName doesn't do case corrections, so we have to use this convoluted # way of retrieving the true filename - for x in walkFiles(result.string): + for x in walkFiles(result): result = x if not existsFile(result) and not existsDir(result): raise newException(OSError, "file '" & result & "' does not exist") |