From: Don Armstrong <don@donarmstrong.com>
Date: Thu, 10 Aug 2017 00:58:43 +0000 (-0700)
Subject: remove definnition for makestatistics; add missing ()
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b6929df21306bcb09f3ac4592d116bcdc97f09b3;p=bugscan.git

remove definnition for makestatistics; add missing ()
---

diff --git a/bugreport b/bugreport
index 72bd249..34ddb6e 100755
--- a/bugreport
+++ b/bugreport
@@ -129,7 +129,7 @@ sub MakeBuglist() {
 }
 
 
-sub MakeStatistics() {
+sub MakeStatistics {
 	my $bugcount=0;		# Total number of bugs so far
 	my $patchtotal=0;	# Total number of bugs marked patch
 	my $pendingtotal=0;	# Total number of bugs marked pending
@@ -212,7 +212,7 @@ FilterPackages($opt_d) if ($opt_d);
 FilterBugsStable() if ($opt_b);
 FilterBugs() if ($opt_t);
 
-MakeStatistics if ($opt_s);
+MakeStatistics() if ($opt_s);
 if ($opt_l) {
 	MakeBuglist();
 }