summaryrefslogtreecommitdiff
path: root/runtime/errors.rs
diff options
context:
space:
mode:
authorYusuke Tanaka <yusuktan@maguro.dev>2021-09-10 10:15:21 +0900
committerGitHub <noreply@github.com>2021-09-09 21:15:21 -0400
commit87052927afd505ff1c5d42075cd23a3619b29011 (patch)
tree596ba6cfef79563ee48c0fbda3588b9e77bff44c /runtime/errors.rs
parentfb35cd0ef496fee9aa65daadf542057f18d6063f (diff)
chore: upgrade Rust to 1.55.0 (#11965)
Diffstat (limited to 'runtime/errors.rs')
-rw-r--r--runtime/errors.rs2
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",
}
}