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 165f5f6 commit 9115fabCopy full SHA for 9115fab
vhost-device-scmi/src/main.rs
@@ -71,7 +71,7 @@ impl TryFrom<args::ScmiArgs> for VuScmiConfig {
71
let mut split = d.split(',');
72
let name = split
73
.next()
74
- .ok_or("String split failed with None")?
+ .expect("split should never return a completed itterator")
75
.to_owned();
76
let mut properties = vec![];
77
for s in split {
0 commit comments