Skip to content

Commit

Permalink
Fix clippy warnings (rust-lang#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz authored and LoganBarnett committed Dec 2, 2023
1 parent 4b06a10 commit fbe7773
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 fbe7773

Please sign in to comment.