Просмотр исходного кода

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
Родитель
Сommit
0a9be93dfd
1 измененных файлов с 1 добавлено и 1 удалено
  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"));