From: Steinar H. Gunderson Date: Wed, 7 Mar 2007 19:18:26 +0000 (+0000) Subject: Fix a syntax error. X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=6cc0aae01abb47bb8732c9b07a889e8697a0169e Fix a syntax error. --- diff --git a/bugcounts b/bugcounts index f3913ee..46cdf36 100755 --- a/bugcounts +++ b/bugcounts @@ -73,7 +73,7 @@ for my $p (keys %scanlib::packagelist) { } if (defined($scanlib::comments{$p}) && $scanlib::comments{$p} =~ m/^\[REMOVE\]/) { - $removecount += scalar @{$scanlib::packagelist{$p}); + $removecount += scalar @{$scanlib::packagelist{$p}}; } }