]> err.no Git - dpkg/commitdiff
Fix one format string
authorFrank Lichtenheld <djpig@debian.org>
Wed, 16 Jan 2008 12:01:50 +0000 (13:01 +0100)
committerFrank Lichtenheld <djpig@debian.org>
Wed, 16 Jan 2008 12:15:27 +0000 (13:15 +0100)
* scripts/dpkg-parsechangelog.pl: Remove one superfluous
%s from a formatstring which was used to output $! before
syserr() was used instead.

scripts/dpkg-parsechangelog.pl

index 26b09295be78de3fe0b30ebd6957b2763e9f2a48..1ae3da2bed17c7cd498b20b4b0ff5e52288e28a8 100755 (executable)
@@ -117,7 +117,7 @@ defined($pf) || error(_g("format %s unknown"), $pa);
 
 if ($changelogfile ne "-") {
     open(STDIN,"<", $changelogfile)
-       || syserr(_g("cannot open %s: %s"), $changelogfile);
+       || syserr(_g("cannot open %s"), $changelogfile);
 }
 exec($pf,@ap) || syserr(_g("cannot exec format parser: %s"));