diff options
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", } } |