diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-09-10 10:15:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 21:15:21 -0400 |
commit | 87052927afd505ff1c5d42075cd23a3619b29011 (patch) | |
tree | 596ba6cfef79563ee48c0fbda3588b9e77bff44c /runtime/errors.rs | |
parent | fb35cd0ef496fee9aa65daadf542057f18d6063f (diff) |
chore: upgrade Rust to 1.55.0 (#11965)
Diffstat (limited to 'runtime/errors.rs')
-rw-r--r-- | runtime/errors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/errors.rs b/runtime/errors.rs index f88455b05..79f3c5e7a 100644 --- a/runtime/errors.rs +++ b/runtime/errors.rs @@ -60,7 +60,7 @@ fn get_io_error_class(error: &io::Error) -> &'static str { WouldBlock => unreachable!(), // Non-exhaustive enum - might add new variants // in the future - _ => unreachable!(), + _ => "Error", } } |