Skip to content

Commit

Permalink
Fix clippy warnings (#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz committed Nov 4, 2022
1 parent e8ffb42 commit 0631a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindgen-cli/options.rs
Expand Up @@ -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()
Expand Down

0 comments on commit 0631a27

Please sign in to comment.