Przeglądaj źródła

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 18 lat temu
rodzic
commit
0a9be93dfd
1 zmienionych plików z 1 dodań i 1 usunięć
  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"));