Explorar o código

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.
Frank Lichtenheld %!s(int64=18) %!d(string=hai) anos
pai
achega
0a9be93dfd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      scripts/dpkg-parsechangelog.pl

+ 1 - 1
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"));