We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1213ef commit 0e0a920Copy full SHA for 0e0a920
src/hyperlight_host/src/hypervisor/crashdump.rs
@@ -103,12 +103,12 @@ impl GuestView {
103
let filename = ctx
104
.filename
105
.as_ref()
106
- .map_or_else(|| "<unknown>".to_string(), |s| s.to_string());
+ .map_or(|| "<unknown>".to_string(), |s| s.to_string());
107
108
let cmd = ctx
109
.binary
110
111
112
113
// The xsave state is checked as it can be empty
114
let mut components = vec![];
0 commit comments