diff options
| author | Charles.Forsyth <devnull@localhost> | 2007-01-15 21:04:26 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2007-01-15 21:04:26 +0000 |
| commit | 8911721efbf3b3721376e2baa30bae002c2975c2 (patch) | |
| tree | aa059ffa39c2c4f1cd5ed2e137dcb9b079de2717 /appl/lib/readdir.b | |
| parent | 0e96539ff7cff23233d3f0a64bb285b385a3a1f4 (diff) | |
20070115
Diffstat (limited to 'appl/lib/readdir.b')
| -rw-r--r-- | appl/lib/readdir.b | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/lib/readdir.b b/appl/lib/readdir.b index 8b8ad276..4de58a4f 100644 --- a/appl/lib/readdir.b +++ b/appl/lib/readdir.b @@ -8,7 +8,7 @@ include "readdir.m"; init(path: string, sortkey: int): (array of ref Dir, int) { sys = load Sys Sys->PATH; - fd := sys->open(path, sys->OREAD); + fd := sys->open(path, Sys->OREAD); if(fd == nil) return (nil, -1); return readall(fd, sortkey); |
