From 9f316ce869858271e4735d2b28041fbb8ce52ee5 Mon Sep 17 00:00:00 2001 From: Matt Taggart <taggart@riseup.net> Date: Tue, 25 Jun 2019 14:06:36 -0700 Subject: [PATCH] fix warning --- tools/stats/counts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/stats/counts b/tools/stats/counts index cac67d3..4f86128 100755 --- a/tools/stats/counts +++ b/tools/stats/counts @@ -19,7 +19,9 @@ while (<LISTS>) { $lists++; open(CONFIG, "$symparoot/expl/$list/config") or warn "cannot open config for $list\n"; - -f CONFIG and sysread CONFIG, my $_, -s CONFIG; + -f CONFIG and sysread CONFIG, my $value, -s CONFIG; + + $_ = $value; $found=0; -- GitLab