From: Frank Lichtenheld Date: Wed, 16 Jan 2008 12:01:50 +0000 (+0100) Subject: Fix one format string X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a9be93dfd725928d5e9f2804a677fac3c9a2992;p=dpkg Fix one format string * scripts/dpkg-parsechangelog.pl: Remove one superfluous %s from a formatstring which was used to output $! before syserr() was used instead. --- diff --git a/scripts/dpkg-parsechangelog.pl b/scripts/dpkg-parsechangelog.pl index 26b09295..1ae3da2b 100755 --- a/scripts/dpkg-parsechangelog.pl +++ b/scripts/dpkg-parsechangelog.pl @@ -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"));