aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2015-02-14 07:34:32 +0100
committerMarius Halden <marius.h@lden.org>2015-02-14 07:34:32 +0100
commitb8a59f230b915284c961d68e94b259a770c896e3 (patch)
tree247f0b99822efdece869982e1f6859be29d3bb5a
parentc5171c7a40acd0b9c7539c44a2556c570c8355ce (diff)
downloadappdrift-stats-b8a59f230b915284c961d68e94b259a770c896e3.tar.gz
appdrift-stats-b8a59f230b915284c961d68e94b259a770c896e3.tar.bz2
appdrift-stats-b8a59f230b915284c961d68e94b259a770c896e3.tar.xz
Initialize some vars to undef
-rwxr-xr-xstats.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/stats.pl b/stats.pl
index bfffe07..20fee9c 100755
--- a/stats.pl
+++ b/stats.pl
@@ -44,7 +44,7 @@ my @content = split /^-+$/m, $content;
shift @content;
for my $section (@content) {
- my ($position, $user, $balance, $endpoint, $time_up, $time_maint, $time_down);
+ my ($position, $user, $balance, $endpoint, $time_up, $time_maint, $time_down) = (undef);
for my $line (split /\n/, $section) {
next if (length $line < 1);