diff options
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); |
