diff options
author | Ori Bernstein <ori@markovcorp.com> | 2017-07-25 13:19:49 -0700 |
---|---|---|
committer | Ori Bernstein <ori@markovcorp.com> | 2017-07-25 13:19:49 -0700 |
commit | cb85a03cb45a25936ce0afaa17651636ca566606 (patch) | |
tree | 2ca272cbefcf2f0bfbe9b3b4ec1ebb5dc1ff3790 /lib/bio | |
parent | a2f4956537807af8c698423f25b9b6de7ab66c1f (diff) | |
download | mc-cb85a03cb45a25936ce0afaa17651636ca566606.tar.gz |
Remove spandrels.
Match patterns can't be null. They haven't been nullable
for ages. And even if they could be nullable, $2 isn't the
match statement any more.
Diffstat (limited to 'lib/bio')
-rw-r--r-- | lib/bio/bio.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bio/bio.myr b/lib/bio/bio.myr index e1b18a0..e56844a 100644 --- a/lib/bio/bio.myr +++ b/lib/bio/bio.myr @@ -61,7 +61,7 @@ pkg bio = const flush : (f : file# -> bool) /* seeking */ - const seek : (f : file#, std.off -> std.result(std.off, ioerr)) + const seek : (f : file#, off : std.off -> std.result(std.off, ioerr)) /* single unit operations */ const putb : (f : file#, b : byte -> status(std.size)) |