Skip to content

Commit 162de1b

Browse files
authored
Fix clippy warning in tool.rs
1 parent fada001 commit 162de1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl Tool {
110110
path: &Path,
111111
cargo_output: &CargoOutput,
112112
) -> Result<ToolFamily, Error> {
113-
let stdout = String::from_utf8_lossy(&stdout);
113+
let stdout = String::from_utf8_lossy(stdout);
114114
cargo_output.print_debug(&stdout);
115115

116116
// https://gitlab.kitware.com/cmake/cmake/-/blob/69a2eeb9dff5b60f2f1e5b425002a0fd45b7cadb/Modules/CMakeDetermineCompilerId.cmake#L267-271

0 commit comments

Comments
 (0)