Skip to content

Commit 993b79e

Browse files
Fix clippy error in Windows build
1 parent a110c17 commit 993b79e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows_build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl<'a> PHPProvider<'a> for Provider<'a> {
7070
// this so we need to add it manually.
7171
let php_lib_name = self.get_php_lib_name()?;
7272
for line in bindings.lines() {
73-
match &*line {
73+
match line {
7474
"extern \"C\" {" | "extern \"fastcall\" {" => {
7575
writeln!(writer, "#[link(name = \"{}\")]", php_lib_name)?;
7676
}

0 commit comments

Comments
 (0)