diff options
author | Ori Bernstein <ori@eigenstate.org> | 2016-08-27 15:55:36 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2016-08-27 15:55:36 -0700 |
commit | e83d16d5bd500b8e1913a836560f943a757ab86b (patch) | |
tree | ed88a93da5185122d16eec51086a053f0910b9a0 /mbld/deps.myr | |
parent | 6121d28dc28103cb85b22fe404daaa8c441790b4 (diff) | |
download | mc-e83d16d5bd500b8e1913a836560f943a757ab86b.tar.gz |
Rename `std.Fail to `std.Err.
Diffstat (limited to 'mbld/deps.myr')
-rw-r--r-- | mbld/deps.myr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbld/deps.myr b/mbld/deps.myr index ddc3e6b..9ac4d2b 100644 --- a/mbld/deps.myr +++ b/mbld/deps.myr @@ -283,7 +283,7 @@ const opensrc = {b, path ;; match bio.open(path, bio.Rd) - | `std.Fail m: std.fatal("could not open {}: {}\n", path, m) + | `std.Err m: std.fatal("could not open {}: {}\n", path, m) | `std.Ok f: -> f ;; } @@ -391,7 +391,7 @@ const openlib = {lib, incs | `std.Ok file: std.slfree(path) -> file - | `std.Fail m: + | `std.Err m: ;; std.fput(std.Err, "could not find library {}\n", lib) std.fput(std.Err, "search path is:\n") |