Skip to content

Commit

Permalink
FileWin32 fix: _getChildren would return a borked list of children …
Browse files Browse the repository at this point in the history
…names (since it assumed to be using relative paths where it was using absolute paths -> fun)
  • Loading branch information
fredreichbier committed Sep 7, 2010
1 parent 4802cc1 commit a8e1579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/io/native/FileWin32.ooc
Expand Up @@ -211,7 +211,7 @@ version(windows) {
b append('\\')
b append(ffd fileName, l)
s := String new(b)
candidate : T = (T == String) ? s : File new(this, s)
candidate : T = (T == String) ? s : File new(s)
result add(candidate)
}
running = FindNextFile(hFile, ffd&)
Expand Down

0 comments on commit a8e1579

Please sign in to comment.