From: Uli Martens Date: Thu, 29 Mar 2012 05:23:56 +0000 (+0200) Subject: define used variable, as we're now using strict X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=b92562632a64ec38e785278212e43f47c9a0dfef define used variable, as we're now using strict --- diff --git a/scripts/debian/update-ftpstats b/scripts/debian/update-ftpstats index 7cad6590..26379bcc 100755 --- a/scripts/debian/update-ftpstats +++ b/scripts/debian/update-ftpstats @@ -27,7 +27,7 @@ for my $file (@ARGV) { } } -foreach $p (sort keys %data) { +foreach my $p (sort keys %data) { print "$p"; foreach $a (@archs) { print ", $data{$p}{$a}";