[Pkg-haskell-commits] [package-plan] 03/03: Avoid uninitialized value in printf

Joachim Breitner nomeata at moszumanska.debian.org
Sat May 3 08:14:04 UTC 2014


This is an automated email from the git hooks/post-receive script.

nomeata pushed a commit to branch master
in repository package-plan.

commit fce7823786d21e472e5077c2643a858025a5d037
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Sat May 3 10:11:42 2014 +0200

    Avoid uninitialized value in printf
---
 test-packages.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test-packages.pl b/test-packages.pl
index 12aacfd..d0478a9 100755
--- a/test-packages.pl
+++ b/test-packages.pl
@@ -93,8 +93,8 @@ for my $pkg (sort keys %packages) {
 			$pkg, $available{$pkg};
 		$stats{obsolete}++;
 	} elsif ($obsolete{$pkg} && !$available{$pkg}) {
-		printf "REMOVED:  %s %s\n" ,
-			$pkg, $available{$pkg};
+		printf "REMOVED:  %s\n" ,
+			$pkg;
 		$error_count++;
 		$stats{REMOVED}++;
 	} elsif (! exists($versions{$pkg})) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/package-plan.git



More information about the Pkg-haskell-commits mailing list