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 f6353b1 commit d493b91Copy full SHA for d493b91
src/hyperlight_host/src/hypervisor/crashdump.rs
@@ -87,12 +87,12 @@ impl GuestView {
87
let filename = ctx
88
.filename
89
.as_ref()
90
- .map_or_else(|| "<unknown>".to_string(), |s| s.to_string());
+ .map_or(|| "<unknown>".to_string(), |s| s.to_string());
91
92
let cmd = ctx
93
.binary
94
95
96
97
// The xsave state is checked as it can be empty
98
let mut components = vec![];
0 commit comments