summaryrefslogtreecommitdiff
path: root/subplotlib
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-11-10 11:50:46 +0200
committerLars Wirzenius <liw@liw.fi>2022-11-12 09:02:48 +0200
commitd1c2cd39f5a9a1fcfbf6b96af3ab18cc65518462 (patch)
tree5704d9ebffc1d44a338b46840878a5cfb8537809 /subplotlib
parentc0ed7a3b60ad7b98fb7953443a0e0cceb2298666 (diff)
downloadsubplot-d1c2cd39f5a9a1fcfbf6b96af3ab18cc65518462.tar.gz
chore: fix unnecessary borrows found by clippy
Sponsored-by: author
Diffstat (limited to 'subplotlib')
-rw-r--r--subplotlib/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/subplotlib/build.rs b/subplotlib/build.rs
index e5f8917..77e493a 100644
--- a/subplotlib/build.rs
+++ b/subplotlib/build.rs
@@ -22,7 +22,7 @@ fn gen_tests() {
.chain(glob("../tests/subplots/common/*.subplot").expect("failed to find common subplots"));
for entry in subplots {
let entry = entry.expect("failed to get subplot dir entry in subplotlib");
- let mut inc = tests.join(&entry.file_name().unwrap());
+ let mut inc = tests.join(entry.file_name().unwrap());
inc.set_extension("rs");
if !inc.exists() {
panic!("missing include file: {}", inc.display());