Fix clippy warnings (#2336)

This commit is contained in:
Christian Poveda Ruiz 2022-11-04 15:41:49 -05:00 committed by GitHub
parent e8ffb42ab6
commit 0631a27bee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1097,7 +1097,7 @@ where
if let Some(abi_overrides) = matches.values_of("override-abi") {
for abi_override in abi_overrides {
let (regex, abi_str) = abi_override
.rsplit_once("=")
.rsplit_once('=')
.expect("Invalid ABI override: Missing `=`");
let abi = abi_str
.parse()