Skip to content

Commit 0631a27

Browse files
authored
Fix clippy warnings (#2336)
1 parent e8ffb42 commit 0631a27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindgen-cli/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ where
10971097
if let Some(abi_overrides) = matches.values_of("override-abi") {
10981098
for abi_override in abi_overrides {
10991099
let (regex, abi_str) = abi_override
1100-
.rsplit_once("=")
1100+
.rsplit_once('=')
11011101
.expect("Invalid ABI override: Missing `=`");
11021102
let abi = abi_str
11031103
.parse()

0 commit comments

Comments
 (0)