summaryrefslogtreecommitdiffstats
path: root/imag-counter
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-04-16 22:39:49 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-04-16 22:39:49 +0200
commitdf2f46f5bfa69ba8100895fb35f4749e0c76dab0 (patch)
treeb2ec9b1773daf3e5a31233ad95f76dc5bb06d482 /imag-counter
parent5300b09d79be066c8082af36b0fb4d7bdc1ea87d (diff)
Remove unused variable
Diffstat (limited to 'imag-counter')
-rw-r--r--imag-counter/src/list.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/imag-counter/src/list.rs b/imag-counter/src/list.rs
index 37bdf155..2d1c80bb 100644
--- a/imag-counter/src/list.rs
+++ b/imag-counter/src/list.rs
@@ -5,7 +5,7 @@ use libimagcounter::counter::Counter;
pub fn list(rt: &Runtime) {
rt.cli()
.subcommand_matches("list")
- .map(|scmd| {
+ .map(|_| {
debug!("Found 'list' subcommand...");
Counter::all_counters(rt.store()).map(|iterator| {